mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 21:38:05 +11:00
13 lines
146 B
NASM
13 lines
146 B
NASM
; comment
|
|
add a, b ; comment
|
|
label1:
|
|
inc a ; comment
|
|
; comment
|
|
.db 42
|
|
label2:
|
|
.dw 0x42
|
|
.dw 3742
|
|
.dw 0x3742
|
|
ld a, (label1)
|
|
ld hl, label2
|