mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-05 06:48:39 +11:00
use the zero flag to signal success
This commit is contained in:
parent
5a826de1ee
commit
9f23d7a79c
@ -14,8 +14,7 @@ at28wMain:
|
||||
ld de, .argspecs
|
||||
ld ix, AT28W_MAXBYTES
|
||||
call parseArgs
|
||||
cp 0xff
|
||||
jr nz, at28wInner
|
||||
jr z, at28wInner
|
||||
; bad args
|
||||
ld a, SHELL_ERR_BAD_ARGS
|
||||
ret
|
||||
|
@ -27,8 +27,7 @@ zasmMain:
|
||||
ld de, .argspecs
|
||||
ld ix, ZASM_RAMSTART
|
||||
call parseArgs
|
||||
cp 0xff
|
||||
jr nz, .goodargs
|
||||
jr z, .goodargs
|
||||
; bad args
|
||||
ld hl, 0
|
||||
ld de, 0
|
||||
|
@ -163,9 +163,10 @@ parseArgs:
|
||||
.success:
|
||||
ld a, PARSE_ARG_MAXCOUNT
|
||||
sbc a, b
|
||||
cp a ; set z to signal success
|
||||
jr .end
|
||||
.error:
|
||||
ld a, 0xff
|
||||
ld a, 1
|
||||
.end:
|
||||
pop ix
|
||||
pop hl
|
||||
|
@ -155,8 +155,7 @@ shellParse:
|
||||
; We're ready to parse args
|
||||
ld ix, SHELL_CMD_ARGS
|
||||
call parseArgs
|
||||
cp 0xff
|
||||
jr z, .parseerror
|
||||
jr nz, .parseerror
|
||||
|
||||
; Args parsed, now we can load the routine address and call it.
|
||||
ld b, a ; pass number of arguments as b
|
||||
|
Loading…
Reference in New Issue
Block a user