 | AARM User's Guide Discontinued |  |
|
|
| SPACE Assembler Statement| Arguments |
<[>label:<]> SPACE expression
| | Description | The SPACE statement reserves the specified number of bytes in the current memory space and initializes it to 0. label is a symbol that is assigned the current memory address. expression is the number of bytes to reserve. After this statement reserves and clears memory it increments the location counter by the number of bytes reserved. | | Example |
GAP: SPACE (($ + 15) AND 0FFFFFFF0h) - $ ; 16-byte alignment
SPACE 10
TIME: SPACE 8
|
|
|