beautypg.com

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

Page 193

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

Description:

The

ORG

directive sets the location counter to the value

specified by . Subsequent statements are assigned
memory locations starting with the new location counter value.
The 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