|
|||||||||||
|
Technical Support On-Line Manuals Assembler Reference |
Assembler ReferenceEXPORT or GLOBAL
The
where:
Use Use the
AREA Example,CODE,READONLY
EXPORT DoAdd ; Export the function name
; to be used by external
; modules.
DoAdd ADD r0,r0,r1
Symbol visibility can be overridden for duplicate exports.
In the following example, the last
EXPORT SymA[WEAK] ; Export as weak-hidden
EXPORT SymA[DYNAMIC] ; SymA becomes non-weak dynamic.
The following examples show the use of the EXPORT symA [SIZE=4] EXPORT symA [DATA, SIZE=4] | ||||||||||
|
|||||||||||