xasm: expand ERR_BAD_ARG condition
This commit is contained in:
parent
e1e6d52fea
commit
f9118ef88e
@ -806,9 +806,9 @@ parseInstruction:
|
||||
ld a, INSTR_TBL_ROWSIZE
|
||||
call addDE
|
||||
djnz .loop
|
||||
; no match
|
||||
xor a
|
||||
jr .end
|
||||
; No signature match
|
||||
ld a, ERR_BAD_ARG
|
||||
jr .error
|
||||
.match:
|
||||
; We have our matching instruction row. We're getting pretty near our
|
||||
; goal here!
|
||||
|
@ -18,5 +18,6 @@ chkerr() {
|
||||
|
||||
chkerr "foo" 1
|
||||
chkerr "ld a, foo" 2
|
||||
chkerr "ld a, hl" 2
|
||||
chkerr "ld a," 3
|
||||
chkerr "ld a, 'A" 3
|
||||
|
Loading…
Reference in New Issue
Block a user