diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-21 05:57:04 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-21 05:57:04 +0000 |
commit | 0fb90682e7103d7f75c17b1b86595eb7f1f49d25 (patch) | |
tree | 55117eb5650a0df6fec4ea0a7c511c595c44696f /EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/GetPowerOfTwo.asm | |
parent | 95770ed8af43e1e3ff5d41d525bf23c0136548bf (diff) | |
download | edk2-platforms-0fb90682e7103d7f75c17b1b86595eb7f1f49d25.tar.xz |
Use ebp as frame buffer in DivU64x32. Fix a typo in GetPowerOfTwo.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5532 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/GetPowerOfTwo.asm')
-rw-r--r-- | EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/GetPowerOfTwo.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/GetPowerOfTwo.asm b/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/GetPowerOfTwo.asm index 2d7b6de7a3..af009c7a7a 100644 --- a/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/GetPowerOfTwo.asm +++ b/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/GetPowerOfTwo.asm @@ -47,7 +47,7 @@ ; two and less than Input
;
;--*/
-GetPowerOfTow PROC
+GetPowerOfTwo PROC
xor eax, eax
mov edx, eax
mov ecx, [esp + 8] ; dword ptr Input[4]
@@ -63,5 +63,5 @@ _F: _Exit:
ret
-GetPowerOfTow ENDP
+GetPowerOfTwo ENDP
END
|