1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-23 08:00:20 +10:00
collapseos/tests/zasm/test3.asm
2019-12-31 13:07:05 -05:00

20 lines
210 B
NASM

; test local labels
addDE:
push af
add a, e
jr nc, .end ; no carry? skip inc
inc d
.end: ld e, a
pop af
ret
addHL:
push af
add a, l
jr nc, .end ; no carry? skip inc
inc h
.end:
ld l, a
pop af
ret