mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 10:28:08 +11:00
28d5ebdc8a
To straighten out includes and to pave the way into zasm being part of the same "include CFS" as parts, we make zasm includes namespaced.
80 lines
918 B
NASM
80 lines
918 B
NASM
jp test
|
|
|
|
#include "core.asm"
|
|
#include "parse.asm"
|
|
#include "zasm/util.asm"
|
|
#include "zasm/parse.asm"
|
|
|
|
; mocks. aren't used in tests
|
|
zasmIsFirstPass:
|
|
symSelect:
|
|
symFind:
|
|
symGetVal:
|
|
jp fail
|
|
|
|
testNum: .db 1
|
|
|
|
s99: .db "99", 0
|
|
s0x99: .db "0x99", 0
|
|
s0b0101: .db "0b0101", 0
|
|
s0b01010101: .db "0b01010101", 0
|
|
sFoo: .db "Foo", 0
|
|
|
|
test:
|
|
ld hl, 0xffff
|
|
ld sp, hl
|
|
|
|
ld hl, s99
|
|
call parseLiteral
|
|
jp nz, fail
|
|
ld a, ixh
|
|
or a
|
|
jp nz, fail
|
|
ld a, ixl
|
|
cp 99
|
|
jp nz, fail
|
|
call nexttest
|
|
|
|
ld hl, sFoo
|
|
call parseLiteral
|
|
jp z, fail
|
|
call nexttest
|
|
|
|
ld hl, s0b0101
|
|
call parseLiteral
|
|
jp nz, fail
|
|
ld a, ixh
|
|
or a
|
|
jp nz, fail
|
|
ld a, ixl
|
|
cp 0b0101
|
|
jp nz, fail
|
|
call nexttest
|
|
|
|
ld hl, s0b01010101
|
|
call parseLiteral
|
|
jp nz, fail
|
|
ld a, ixh
|
|
or a
|
|
jp nz, fail
|
|
ld a, ixl
|
|
cp 0b01010101
|
|
jp nz, fail
|
|
call nexttest
|
|
|
|
; success
|
|
xor a
|
|
halt
|
|
|
|
nexttest:
|
|
ld a, (testNum)
|
|
inc a
|
|
ld (testNum), a
|
|
ret
|
|
|
|
fail:
|
|
ld a, (testNum)
|
|
halt
|
|
|
|
|