mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 16:08:06 +11:00
9 lines
111 B
NASM
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!
|