diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-25 00:05:41 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-25 00:05:41 +0000 |
commit | e73bf9f394a1b7275e0703e2cc6ec15c5547d5a9 (patch) | |
tree | 366a27b13346fe0830fca44b135b4e1f211ab8cd | |
parent | 543cecc30194e0d62c7d4a8487cbd1539cfb7519 (diff) | |
download | edk2-platforms-e73bf9f394a1b7275e0703e2cc6ec15c5547d5a9.tar.xz |
Use ".486" for the instruction of "wbinvd"
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6713 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/DisableCache.asm | 2 | ||||
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/EnableCache.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/DisableCache.asm b/MdePkg/Library/BaseLib/Ia32/DisableCache.asm index 0d92472687..67247948b6 100644 --- a/MdePkg/Library/BaseLib/Ia32/DisableCache.asm +++ b/MdePkg/Library/BaseLib/Ia32/DisableCache.asm @@ -22,7 +22,7 @@ ;
;------------------------------------------------------------------------------
- .386p
+ .486p
.model flat,C
.code
diff --git a/MdePkg/Library/BaseLib/Ia32/EnableCache.asm b/MdePkg/Library/BaseLib/Ia32/EnableCache.asm index e25a5bf44d..c47ee1c60b 100644 --- a/MdePkg/Library/BaseLib/Ia32/EnableCache.asm +++ b/MdePkg/Library/BaseLib/Ia32/EnableCache.asm @@ -22,7 +22,7 @@ ;
;------------------------------------------------------------------------------
- .386p
+ .486p
.model flat,C
.code
|