ARM Linking Directives (Windows CE 5.0)
The following ARM assembly directives link other files to the current assembly.
Directive | Syntax | Description |
---|---|---|
EXPORT |
|
Declares a symbol for use at link time by other, separate object files.
FPPREGARGS defines a function that expects fp arguments passed in fp registers. DATA defines a code-segment datum rather than a function or procedure. LEAF causes asserts that call other functions. Identical to the GLOBAL directive. |
GET |
|
Includes an additional file named filename within the current file assembly.
The included file can in turn use GET directives to include more files. When assembly of the included file is complete, assembly continues at the line following the GET directive. |
GLOBAL |
|
Declares a symbol for use at link time by other, separate object files.
FPPREGARGS defines a function that expects fp arguments passed in fp registers. DATA defines a code-segment datum rather than a function or procedure. LEAF causes asserts that call other functions. Identical to the EXPORT directive. |
IMPORT |
|
Provides the assembler with a name, symbol.
The assembly does not contain a definition for symbol, but resolves it at link time to a symbol defined in a separate object file. The routine treats symbol as a program address. For more information about WEAK symbols, see About COFF. |
INCLUDE |
|
Specifies a synonym for GET. |
See Also
Send Feedback on this topic to the authors