diff options
Diffstat (limited to 'lib/alu.c')
-rw-r--r-- | lib/alu.c | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -36,21 +36,31 @@ Uint32 RSoustractionSigne(Uint32 a, Uint32 b) Uint32 RMultiplicationNonSigne(Uint32 a, Uint32 b) { - return (a * b); + unsigned long long temp; + + temp = a * b; + SecondResult = temp >> 32; + return (temp & ((1 << 32) -1)); } Uint32 RMultiplicationSigne(Uint32 a, Uint32 b) { - return (a * b); + unsigned long long temp; + + temp = a * b; + SecondResult = temp >> 32; + return (temp & ((1 << 32) -1)); } Uint32 RDivisionNonSigne(Uint32 a, Uint32 b) { + SecondResult = a % b; return (a / b); } Uint32 RDivisionSigne(Uint32 a, Uint32 b) { + SecondResuld = a % b; return (a / b); } |