mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 15:27:18 +00:00
.BLKB and .BLKW should have an argument, but if missing it is 1. .ODD and .EVEN are not allowed to have an argument.
26 lines
454 B
Plaintext
26 lines
454 B
Plaintext
;;;;;
|
|
;
|
|
; Test .BLKB and .BLKW
|
|
;
|
|
label: .blkb ; not recommended, but default argument is 1
|
|
.blkb 1
|
|
.blkb 2
|
|
.blkb 100.
|
|
.blkb label ; error: not an constant expression
|
|
|
|
.odd
|
|
|
|
.blkw 1 ; should maybe be an error: odd address
|
|
|
|
.even
|
|
|
|
label2: .blkb ; not recommended, but default argument is 1
|
|
.blkb 1
|
|
.blkb 2
|
|
.blkb 100.
|
|
.blkb label2 ; error: not an constant expression
|
|
|
|
|
|
.even 1 ; error: no argument allowed
|
|
.odd 1 ; error: no argument allowed
|