mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 10:18:05 +11:00
22c7eeaa5d
This 'apps' folder is going to disappear. Everything is going to be a "part" to be assembled through recipes. 'apps' has no meaning.
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!
|