This commit is contained in:
4am 2018-04-18 22:12:24 -04:00
parent b01733d893
commit 0ba17a1df6

View File

@ -64,7 +64,7 @@ ParseKeyValueText
cmp #$0D ; found CR before '=', ignore key and start over (also handles blank lines) cmp #$0D ; found CR before '=', ignore key and start over (also handles blank lines)
beq .newKey beq .newKey
cmp #$5B ; '[' ends the parsing cmp #$5B ; '[' ends the parsing
beq .done beq .parseKeyValueDone
sta gKey,x sta gKey,x
inx inx
bpl .gatherKey bpl .gatherKey
@ -113,4 +113,5 @@ IncAndGetChar
bne + bne +
inc $FF inc $FF
+ lda ($FE),y + lda ($FE),y
.done rts .parseKeyValueDone
rts