|
|||||||||||
|
Technical Support On-Line Manuals Assembler Reference |
Assembler ReferenceEXPORTAS
The
where:
The symbol names are case-sensitive. Use
AREA data1, DATA ; starts a new area data1
AREA data2, DATA ; starts a new area data2
EXPORTAS data2, data1 ; the section symbol referred to as data2 will
; appear in the object file string table as data1.
one EQU 2
EXPORTAS one, two
EXPORT one ; the symbol 'two' will appear in the object
; file's symbol table with the value 2.
| ||||||||||
|
|||||||||||