mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-17 02:34:26 +02:00
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:
|
; Abstract:
|
||||||
;
|
;
|
||||||
; Implementation of LongJump() on x64.
|
; Implementation of _LongJump() on x64.
|
||||||
;
|
;
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
|
|
||||||
.code
|
.code
|
||||||
|
|
||||||
LongJump PROC
|
_LongJump PROC
|
||||||
mov rbx, [rcx]
|
mov rbx, [rcx]
|
||||||
mov rsp, [rcx + 8]
|
mov rsp, [rcx + 8]
|
||||||
mov rbp, [rcx + 10h]
|
mov rbp, [rcx + 10h]
|
||||||
@ -33,6 +33,6 @@ LongJump PROC
|
|||||||
mov r15, [rcx + 40h]
|
mov r15, [rcx + 40h]
|
||||||
mov rax, rdx
|
mov rax, rdx
|
||||||
jmp qword ptr [rcx + 48h]
|
jmp qword ptr [rcx + 48h]
|
||||||
LongJump ENDP
|
_LongJump ENDP
|
||||||
|
|
||||||
END
|
END
|
||||||
|
Loading…
x
Reference in New Issue
Block a user