mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-23 19:58:06 +11:00
zasm: implement error conditions in .org and .fill
This commit is contained in:
parent
371076190f
commit
31f7c7771d
@ -142,17 +142,27 @@ handleEQU:
|
||||
|
||||
handleORG:
|
||||
call readWord
|
||||
jr nz, .badfmt
|
||||
call parseExpr
|
||||
ret nz
|
||||
jr nz, .badarg
|
||||
push ix \ pop hl
|
||||
call zasmSetOrg
|
||||
cp a ; ensure Z
|
||||
ret
|
||||
.badfmt:
|
||||
ld a, ERR_BAD_FMT
|
||||
jr .error
|
||||
.badarg:
|
||||
ld a, ERR_BAD_ARG
|
||||
.error:
|
||||
call unsetZ
|
||||
ret
|
||||
|
||||
handleFIL:
|
||||
call readWord
|
||||
jr nz, .badfmt
|
||||
call parseExpr
|
||||
ret nz
|
||||
jr nz, .badarg
|
||||
push bc
|
||||
push ix \ pop bc
|
||||
xor a
|
||||
@ -163,6 +173,14 @@ handleFIL:
|
||||
cp a ; ensure Z
|
||||
pop bc
|
||||
ret
|
||||
.badfmt:
|
||||
ld a, ERR_BAD_FMT
|
||||
jr .error
|
||||
.badarg:
|
||||
ld a, ERR_BAD_ARG
|
||||
.error:
|
||||
call unsetZ
|
||||
ret
|
||||
|
||||
handleINC:
|
||||
call readWord
|
||||
|
@ -22,11 +22,15 @@ chkerr "ld a, hl" 2
|
||||
chkerr ".db foo" 2
|
||||
chkerr ".dw foo" 2
|
||||
chkerr ".equ foo bar" 2
|
||||
chkerr ".org foo" 2
|
||||
chkerr ".fill foo" 2
|
||||
chkerr "ld a," 3
|
||||
chkerr "ld a, 'A" 3
|
||||
chkerr ".db 0x42," 3
|
||||
chkerr ".dw 0x4242," 3
|
||||
chkerr ".equ" 3
|
||||
chkerr ".equ foo" 3
|
||||
chkerr ".org" 3
|
||||
chkerr ".fill" 3
|
||||
chkerr "ld a, 0x100" 4
|
||||
chkerr ".db 0x100" 4
|
||||
|
Loading…
Reference in New Issue
Block a user