1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-10-03 13:30:55 +10:00
collapseos/apps/zasm/tests/test1.asm
2019-05-10 21:14:46 -04:00

13 lines
146 B
NASM

; comment
add a, b ; comment
label1:
inc a ; comment
ld hl, label2
; comment
.db 42
label2:
.dw 0x42
.dw 3742
.dw 0x3742
ld a, (label1)