 | Ax51 User's Guide |  |
|
|
| ISEG Assembler Statement| Arguments |
ISEG 〚AT address〛
| | Description | The ISEG statement selects an absolute segment within IDATA space. If the optional address is included, the assembler starts the absolute segment from that address. The valid address range is 00h-0FFh. If the optional address is omitted, the assembler starts the absolute segment from address 0 (if no prior absolute IDATA segment was defined). If an absolute IDATA segment was previously defined, the assembler continues from the end of that segment. Note | | See Also | BSEG, CSEG, DSEG, IDATA, XSEG | | Example |
ISEG AT 0xC0 ; absolute IDATA segment
; at 0C0H
TMP_IA: DS 2 ; absolute idata word variable
; named TMP_IA
TEM_IB: DS 4 ; absolute idata dword (32-bit)
; variable named TMP_IB
|
Related Knowledgebase Articles |
|