Use db rather than .byte

This commit is contained in:
Emmanuel Marty 2019-07-04 18:09:29 +02:00 committed by GitHub
parent cdb27add47
commit fe0dcf107f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ lzsa1_decompress:
jne .mid_literals jne .mid_literals
lodsw ; grab 16-bit extra length 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) ; (*like jmp short .got_literals but faster)
.mid_literals: .mid_literals:
@ -71,7 +71,7 @@ lzsa1_decompress:
dec cx dec cx
xchg cx,ax ; ah to 0xff - cx was zero from the rep movsb above xchg cx,ax ; ah to 0xff - cx was zero from the rep movsb above
lodsb lodsb
.byte 3CH ; mask lodsw db 3CH ; mask lodsw
; (*like jmp short .get_match_length but faster) ; (*like jmp short .get_match_length but faster)
.get_long_offset: .get_long_offset: