196
Section 3: Assembler
TI
-
89 / TI
-
92 Plus Sierra C Assembler Reference Manual
Not for Distribution
Beta Version February 2, 2001
.page — Begin New Listing Page
Syntax
.page
Description
The .page directive begins a new page in the listing file. This directive does not
appear in the listing.
.reorg — Reset the Location Counter in an Absolute Section
Syntax
.reorg
address
Description
address
Specifies the address at which the current section will continue. It
is an absolute expression that cannot contain any forward,
external, or undefined references.
The .reorg directive resets the location counter in an absolute section. The
continuation address
address must be greater than the current value of the
section’s location counter; any space that is created is filled with the current fill
value (see .opt fillval), unless the section is of BSS-type.
Examples
.org 0x4000
addq
#7,d0
.reorg 0x6000
.bsection tbl, 0x1000
move.l
_abc,d0
.reorg 0x8000
As the second example illustrates, the .reorg directive can be applied to any
absolute section, regardless of its declaration.