mirror of https://github.com/acidanthera/audk.git
Fixed a bug due to misorder of 'push's
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@241 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
d52f141b5f
commit
50a3fe9561
|
@ -36,8 +36,8 @@
|
|||
;------------------------------------------------------------------------------
|
||||
AsmCpuid PROC USES rbx
|
||||
mov eax, ecx
|
||||
push rdx
|
||||
push rax ; save Index on stack
|
||||
push rdx
|
||||
cpuid
|
||||
test r9, r9
|
||||
jz @F
|
||||
|
|
Loading…
Reference in New Issue