diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/MultU64x64.asm')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/MultU64x64.asm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/MultU64x64.asm b/MdePkg/Library/BaseLib/Ia32/MultU64x64.asm index 24c6a7daa3..377aa51972 100644 --- a/MdePkg/Library/BaseLib/Ia32/MultU64x64.asm +++ b/MdePkg/Library/BaseLib/Ia32/MultU64x64.asm @@ -23,6 +23,14 @@ .model flat,C
.code
+;------------------------------------------------------------------------------
+; UINT64
+; EFIAPI
+; InternalMathMultU64x64 (
+; IN UINT64 Multiplicand,
+; IN UINT64 Multiplier
+; );
+;------------------------------------------------------------------------------
InternalMathMultU64x64 PROC USES ebx
mov ebx, [esp + 8]
mov edx, [esp + 16]
|