1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 03:28:46 +10:00
collapseos/tools/tests/zasm/test4.asm
Virgil Dupras 556be3f0ce zasm: allow for whitespace inside string literals
Also, increase scratchpad size. It wasn't big enough for some
expressions in shell unit.
2019-05-17 16:44:08 -04:00

10 lines
133 B
NASM

; test literals parsing
ld a, 42
ld a, 0x42
ld hl, 0x4234
ld hl, (0x4234)
ld a, 'X'
ld a, 'a' ; don't upcase!
.db "bonjour allo", 0