diff --git a/asm/6502/decompress_v1.asm b/asm/6502/decompress_v1.asm index ca22f4a..743e3c7 100755 --- a/asm/6502/decompress_v1.asm +++ b/asm/6502/decompress_v1.asm @@ -129,8 +129,7 @@ OFFSHI = *+1 PLA ; retrieve token from stack again AND #$0F ; isolate match len (MMMM) - CLC - ADC #$03 + ADC #$02 ; plus carry which is always set by the high ADC CMP #$12 ; MATCH_RUN_LEN? BNE PREPARE_COPY_MATCH ; if not, count is directly embedded in token