1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-23 11:20:19 +10:00
collapseos/tools/tests/unit/test_util_z.asm
2019-11-22 14:45:12 -05:00

37 lines
326 B
NASM

jp test
.inc "core.asm"
.inc "str.asm"
.inc "lib/util.asm"
.inc "zasm/util.asm"
testNum: .db 1
sFoo: .db "foo", 0
test:
ld hl, 0xffff
ld sp, hl
ld hl, sFoo
call strlen
cp 3
jp nz, fail
call nexttest
; success
xor a
halt
nexttest:
ld a, (testNum)
inc a
ld (testNum), a
ret
fail:
ld a, (testNum)
halt