1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-25 07:30:19 +10:00
collapseos/tools/tests/zasm/test4.asm
Virgil Dupras 22c7eeaa5d Move apps/zasm/tests to tools/tests/zasm
This 'apps' folder is going to disappear. Everything is going to be a
"part" to be assembled through recipes. 'apps' has no meaning.
2019-05-16 11:23:15 -04:00

9 lines
111 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!