mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 12:18:04 +11:00
556be3f0ce
Also, increase scratchpad size. It wasn't big enough for some expressions in shell unit.
10 lines
133 B
NASM
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
|