FIX: parse_integer was treating digit '9' as marking end of string :-(

git-svn-id: http://svn.code.sf.net/p/netboot65/code@244 93682198-c243-4bdb-bd91-e943c89aac3b
This commit is contained in:
jonnosan 2009-12-30 10:53:59 +00:00
parent d8908995c7
commit b04077968b

View File

@ -32,7 +32,7 @@ parse_integer:
lda (target_string),y
cmp #$30
bcc @end_of_int ;any non-decimal char should be treated as end of integer
cmp #$39
cmp #$3A
bcs @end_of_int ;any non-decimal char should be treated as end of integer
ldax temp_value