mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-15 04:15:58 +00:00
Update to latest released version of macro-11. Command run: git subtree pull --prefix=crossassemblers/macro11 ../macro11 macro11-v0.7.2 (should be equivalent to git subtree pull --prefix=crossassemblers/macro11 git://gitlab.com/Rhialto/macro11.git macro11-v0.7.2)
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
|