diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/MultU64x32.S')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/MultU64x32.S | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/MultU64x32.S b/MdePkg/Library/BaseLib/Ia32/MultU64x32.S index 572a312de8..0b01733076 100644 --- a/MdePkg/Library/BaseLib/Ia32/MultU64x32.S +++ b/MdePkg/Library/BaseLib/Ia32/MultU64x32.S @@ -19,14 +19,23 @@ # #------------------------------------------------------------------------------ - .386: - .code: + .386: + .code: .global _InternalMathMultU64x32 + +#------------------------------------------------------------------------------ +# UINT64 +# EFIAPI +# InternalMathMultU64x32 ( +# IN UINT64 Multiplicand, +# IN UINT32 Multiplier +# ); +#------------------------------------------------------------------------------ _InternalMathMultU64x32: - movl 12(%esp),%ecx - movl %ecx,%eax - imull 8(%esp),%ecx - mull 0x4(%esp) - addl %ecx,%edx + movl 12(%esp), %ecx + movl %ecx, %eax + imull 8(%esp), %ecx + mull 0x4(%esp) + addl %ecx, %edx ret |