S5U1C62000A MANUAL EPSON 73
(S1C60/62 FAMILY ASSEMBLER PACKAGE)
CHAPTER 5: ASSEMBLER
If the .org pseudo-instruction is defined immediately after a section definer (.code or .bss), the section
definer does not start a new section. But .org starts a new section with the attribute of the section
definer.
Example:
.code ... This does not start a new CODE section.
.org 0x100 ... This starts an absolute CODE section.
:
If the .org pseudo-instruction is defined immediately before a section definer (.code or .bss), it does
not start a new section and makes no effect to the following sections.
Example:
.code ... The latest relocatable section definition.
:
.org 0x100 ... This does not start a new absolute section and makes no effect.
.bss ... The another kind (BSS) of section which is not affected by the
: previous ".org" pseudo-instruction in the CODE section.
.code ... This will be an relocatable CODE section not affected by the
: previous ".org" pseudo-instruction.