浏览代码

parse: fix option word default value

Previously, an optional word argument would only have its first byte set
to zero.
pull/10/head
Virgil Dupras 5 年前
父节点
当前提交
14cc2fb785
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. +4
    -3
      kernel/parse.asm

+ 4
- 3
kernel/parse.asm 查看文件

@@ -92,12 +92,13 @@ parseArgs:
push hl
push ix

ld b, PARSE_ARG_MAXCOUNT
.loop:
; init the arg value to a default 0
xor a
ld (ix), a

ld (ix+1), a
ld (ix+2), a
ld b, PARSE_ARG_MAXCOUNT
.loop:
ld a, (hl)
; is this the end of the line?
or a ; cp 0


正在加载...
取消
保存