Merge pull request #7 from peterferrie/master - thanks again!

a little more
This commit is contained in:
Emmanuel Marty 2019-07-08 09:17:30 +02:00 committed by GitHub
commit 0c5bc1d218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,17 +92,13 @@ lzsa1_decompress:
lodsw ; grab 16-bit length
test ax,ax ; bail if we hit EOD
jne short .got_matchlen
.done_decompressing:
pop ax ; retrieve the original decompression offset
xchg ax,di ; compute decompressed size
sub ax,di
ret ; done
je short .done_decompressing
db 81H ; mask inc ah/lodsb
; (*like jmp short .got_literals but faster)
.mid_matchlen:
lodsb ; grab single extra length byte
inc ah ; add 256
lodsb ; grab single extra length byte
.got_matchlen:
xchg cx,ax ; copy match length into cx
@ -116,3 +112,9 @@ lzsa1_decompress:
xchg si,ax ; restore ds:si
pop ds
jmp short .decode_token ; go decode another token
.done_decompressing:
pop ax ; retrieve the original decompression offset
xchg ax,di ; compute decompressed size
sub ax,di
ret ; done