|
| OMF2 Compiler Directive| Abbreviation | | O2 | | Arguments | | None. | | Default | | The C51 Compiler, by default, generates Intel OMF51 object modules. The CX51 Compiler, by default, generates OMF2 object modules. | | µVision | | Project — Select Device — Use LX51 instead of BL51. | | Description | | The OMF2 directive enables the OMF2 file format which provides detailed symbol type checking across modules and eliminates the historic limitations of the Intel OMF51 file format. The OMF2 file format is required to use the following features of the Cx51 Compiler: - Variable Banking: The VARBANKING directive enables use of the far memory type.
- XDATA ROM: Using the const xdata memory type specifies that XDATA variables are located in ROM.
- RAM Strings: The STRING directive specifies that string constants are located in xdata or far space.
- Dallas 390/400/5240/5250 Contiguous Mode: The ROM (D512K) and ROM (D16M) directives enable the contiguous mode of the Dallas Semiconductor 390 and variants.
The OMF2 file format requires the extended LX51 Linker/Locater and cannot be used with the BL51 Linker/Locater. | | Example | |
C51 SAMPLE.C OMF2
#pragma O2
|
Related Knowledgebase Articles |
|