1
0
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:
Valentin Lenhart 2019-11-04 19:04:01 +01:00
parent 5a826de1ee
commit 9f23d7a79c
4 changed files with 5 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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