From 5d41b5a4db3bf70eae71f26378227097779f6a14 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Mon, 26 Feb 2007 00:52:18 +0100 Subject: [PATCH] Fix shld macro. --- src/stub/src/arch/i086/lzma_d.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stub/src/arch/i086/lzma_d.S b/src/stub/src/arch/i086/lzma_d.S index a4a3f466..18cb6e41 100644 --- a/src/stub/src/arch/i086/lzma_d.S +++ b/src/stub/src/arch/i086/lzma_d.S @@ -163,7 +163,7 @@ // REQUIRED: 16 <= cl <= 32 .macro M_shld_16_32 sub cl, 16 - shr ax, cl + shl ax, cl mov dx, ax xor ax, ax .endm