1
0
mirror of https://github.com/pfusik/zlib6502.git synced 2024-06-03 11:29:39 +00:00

Improve labels.

This commit is contained in:
Piotr Fusik 2017-11-07 19:52:27 +01:00
parent 0608c9adef
commit ebe87070eb

View File

@ -342,9 +342,8 @@ fetchCode_nextBit
beq fetchCode_allLiterals beq fetchCode_allLiterals
; is it literal code of length X? ; is it literal code of length X?
sub nBitCode_literalCount,x sub nBitCode_literalCount,x
bcs fetchCode_tryControl bcs fetchCode_notLiteral
; literal code ; literal code
fetchCode_literal
; clc ; clc
adc nBitCode_literalOffset,x adc nBitCode_literalOffset,x
fetchCode_allLiterals fetchCode_allLiterals
@ -358,7 +357,7 @@ fetchCode_ge256
sbc nBitCode_literalCount,x sbc nBitCode_literalCount,x
sec sec
; is it control code of length X? ; is it control code of length X?
fetchCode_tryControl fetchCode_notLiteral
; sec ; sec
sbc nBitCode_controlCount,x sbc nBitCode_controlCount,x
bcs fetchCode_nextBit bcs fetchCode_nextBit