1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-11-06 12:38:05 +11:00
collapseos/tools/tests/zasm/test4.asm
2019-05-17 16:17:22 -04:00

10 lines
125 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"