mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg: Replace the un-necessary WBINVD instruction at the reset vector with two NOPs in VTF0.
Signed-off-by: rsun3 Reviewed-by: mdkinney git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12085 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c5493c54d5
commit
8332983e2e
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -2,7 +2,7 @@
|
|||
; @file
|
||||
; First code exectuted by processor after resetting.
|
||||
;
|
||||
; Copyright (c) 2008 - 2009, Intel Corporation. All rights reserved.<BR>
|
||||
; Copyright (c) 2008 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||
; This program and the accompanying materials
|
||||
; are licensed and made available under the terms and conditions of the BSD License
|
||||
; which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -48,7 +48,8 @@ resetVector:
|
|||
;
|
||||
; This is where the processor will begin execution
|
||||
;
|
||||
wbinvd
|
||||
nop
|
||||
nop
|
||||
jmp short EarlyBspInitReal16
|
||||
|
||||
ALIGN 16
|
||||
|
|
Loading…
Reference in New Issue