mirror of
https://github.com/emmanuel-marty/lzsa.git
synced 2024-11-22 05:33:58 +00:00
Optimize handling of 9 bits offset in 6809 LZSA2 depacker
This commit is contained in:
parent
061ca99838
commit
99db30a732
@ -76,10 +76,8 @@ lz2nolt ldb ,s ; get token again, don't pop it from the stack
|
||||
lda #$ff ; set bits 8-15 of offset
|
||||
bra lz2gotof
|
||||
|
||||
lz2offs9 clra ; clear A (to prepare for high 8 bits of offset)
|
||||
lslb ; push token's Z flag bit into carry
|
||||
rola ; shift Z flag from carry into bit 0 of A
|
||||
coma ; set bits 9-15 of offset, reverse bit 8
|
||||
lz2offs9 sex ; extend token's Z flag bit into reg A
|
||||
deca ; set bits 9-15 of offset, reverse bit 8
|
||||
|
||||
ldb ,x+ ; load low 8 bits of (negative, signed) offset
|
||||
bra lz2gotof
|
||||
|
Loading…
Reference in New Issue
Block a user