Motorola HC12 User Manual

Page of 328
User’s Manual
MCUez HC12 Assembler
196
Assembler Directives
MOTOROLA
Assembler Directives
8.30  PAGE — Insert Page Break
Syntax:
PAGE
Description:
Inserts a page break in the assembly listing
Example:
The following portion of code:
codeSec: SECTION
        nop
        nop
        page
        nop
        nop
Generates this listing file:
Motorola HC12-Assembler
(c) COPYRIGHT MOTOROLA 1991-1997
Abs. Rel.   Loc.
Obj. code   Source line
---- ----   ------ ---------   -----------
1    1
codeSec: SECTION
3    3
000000 A7                  nop
4    4
000001 A7                  nop
Motorola HC12-Assembler
(c) COPYRIGHT MOTOROLA 1991-1997
Abs. Rel.   Loc.
Obj. code
Source line
---- ----   ------ ---------   -----------
6    6
000002 A7                  nop
7    7
000003 A7                  nop