From fe0dcf107f58cc885df4616a022a27b46a09392f Mon Sep 17 00:00:00 2001 From: Emmanuel Marty Date: Thu, 4 Jul 2019 18:09:29 +0200 Subject: [PATCH] Use db rather than .byte --- asm/8088/decompress_small_v1.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asm/8088/decompress_small_v1.S b/asm/8088/decompress_small_v1.S index e41e220..45591a4 100755 --- a/asm/8088/decompress_small_v1.S +++ b/asm/8088/decompress_small_v1.S @@ -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: