28 org — set location counter, Org — set location counter, 27 nopage — disable paging – Motorola HC12 User Manual

Page 193

Advertising
background image

Assembler Directives

NOPAGE — Disable Paging

MCUez HC12 Assembler

User’s Manual

MOTOROLA

Assembler Directives

193

8.27 NOPAGE — Disable Paging

Syntax:

NOPAGE

Description:

Disables pagination in the listing file. Program lines are listed
continuously without headings or top or bottom margins.

8.28 ORG — Set Location Counter

Syntax:

ORG

<expression>

Description:

The

ORG

directive sets the location counter to the value

specified by <expression>. Subsequent statements are assigned
memory locations starting with the new location counter value.
The <expression> must be absolute and may not contain any
forward, undefined, or external references. The

ORG

directive

generates an internal section, which is absolute.

Example:

org $2000

b1: nop

b2: rts

Advertising