mirror of https://github.com/acidanthera/audk.git
Changed LongJump() to _LongJump()
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@348 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
493b974b1b
commit
6586cdf395
|
@ -15,13 +15,13 @@
|
|||
;
|
||||
; Abstract:
|
||||
;
|
||||
; Implementation of LongJump() on x64.
|
||||
; Implementation of _LongJump() on x64.
|
||||
;
|
||||
;------------------------------------------------------------------------------
|
||||
|
||||
.code
|
||||
|
||||
LongJump PROC
|
||||
_LongJump PROC
|
||||
mov rbx, [rcx]
|
||||
mov rsp, [rcx + 8]
|
||||
mov rbp, [rcx + 10h]
|
||||
|
@ -33,6 +33,6 @@ LongJump PROC
|
|||
mov r15, [rcx + 40h]
|
||||
mov rax, rdx
|
||||
jmp qword ptr [rcx + 48h]
|
||||
LongJump ENDP
|
||||
_LongJump ENDP
|
||||
|
||||
END
|
||||
|
|
Loading…
Reference in New Issue