mirror of
https://github.com/emmanuel-marty/lzsa.git
synced 2025-04-06 05:41:29 +00:00
Simplify short offset handling in 6502 depacker
This commit is contained in:
parent
c220694531
commit
8c3fc6d652
@ -85,18 +85,17 @@ NO_LITERALS
|
||||
AND #$80 ; isolate match offset mode (O)
|
||||
BNE GET_LONG_OFFSET ; $80: 16 bit offset
|
||||
|
||||
JSR GETSRC ; get 8 bit offset from stream
|
||||
TAX ; store as low 8 bits of offset
|
||||
JSR GETSRC ; get 8 bit offset from stream in A
|
||||
; Y (high 8 bits) is already set to 0 here
|
||||
JMP FIX_OFFSET ; go increase offset
|
||||
|
||||
GET_LONG_OFFSET ; $00: 2-byte offset
|
||||
JSR GETLARGESRC ; grab low 8 bits in X, high 8 bits in A
|
||||
TAY ; put high 8 bits in Y
|
||||
TXA ; put low 8 bits in A
|
||||
|
||||
FIX_OFFSET
|
||||
TXA ; add 1 to offset
|
||||
CLC
|
||||
CLC ; add 1 to offset
|
||||
ADC #$01
|
||||
BCC OFFSET_FIXED
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user