mirror of
https://github.com/emmanuel-marty/lzsa.git
synced 2024-12-22 16:30:01 +00:00
Use db rather than .byte
This commit is contained in:
parent
cdb27add47
commit
fe0dcf107f
@ -54,7 +54,7 @@ lzsa1_decompress:
|
||||
jne .mid_literals
|
||||
|
||||
lodsw ; grab 16-bit extra length
|
||||
.byte 81H ; mask inc ah/lodsb
|
||||
db 81H ; mask inc ah/lodsb
|
||||
; (*like jmp short .got_literals but faster)
|
||||
|
||||
.mid_literals:
|
||||
@ -71,7 +71,7 @@ lzsa1_decompress:
|
||||
dec cx
|
||||
xchg cx,ax ; ah to 0xff - cx was zero from the rep movsb above
|
||||
lodsb
|
||||
.byte 3CH ; mask lodsw
|
||||
db 3CH ; mask lodsw
|
||||
; (*like jmp short .get_match_length but faster)
|
||||
|
||||
.get_long_offset:
|
||||
|
Loading…
Reference in New Issue
Block a user