export directive
In this section:
Syntax
export symbol name;Parameters
| The name of the symbol. |
Description
The export directive defines a symbol to be exported, so that it can be used both from the executable image and from a global label. The application, or the debugger, can then refer to it for setup purposes etc.
Note
The symbol value will be listed in the Address column of the entry list of the generated map file.
Example
/* Define the symbol my_symbol to be exported */
export symbol my_symbol;