mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-01 17:20:55 +11:00
11 lines
143 B
NASM
11 lines
143 B
NASM
; test literals parsing
|
|
|
|
ld a, 42
|
|
ld a, 0x42
|
|
ld hl, 0x4234
|
|
ld hl, (0x4234)
|
|
ld a, 'X'
|
|
ld a, ' '
|
|
ld a, 'a' ; don't upcase!
|
|
.db "bonjour allo", 0
|