From 5833f234a8e65ad708897cba3686eb5f60cf9886 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sat, 16 Aug 2008 12:51:39 +0000 Subject: [PATCH] =?UTF-8?q?Finta=20L=C3=A1szl=C3=B3=20=20-=20Fix=20=5Fallmul=20function,=20which=20would=20alwa?= =?UTF-8?q?ys=20give=200=20if=20both=20multiplier=20and=20muliplicand's=20?= =?UTF-8?q?high=20words=20are=200.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit svn path=/trunk/; revision=35388 --- reactos/lib/sdk/crt/math/i386/allmul_asm.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/sdk/crt/math/i386/allmul_asm.s b/reactos/lib/sdk/crt/math/i386/allmul_asm.s index c07867de052..1c17bb939a7 100644 --- a/reactos/lib/sdk/crt/math/i386/allmul_asm.s +++ b/reactos/lib/sdk/crt/math/i386/allmul_asm.s @@ -83,7 +83,7 @@ __allmul: mov ecx,BLO jnz short hard //both are zero, just mult ALO and BLO - mov eax,AHI + mov eax,ALO mul ecx ret 16 // callee restores the stack