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 newlocation 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