mirror of https://github.com/acidanthera/audk.git
change LongJump() to _LongJump()
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@344 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c39b1ee3cd
commit
e513625f22
|
@ -15,7 +15,7 @@
|
||||||
;
|
;
|
||||||
; Abstract:
|
; Abstract:
|
||||||
;
|
;
|
||||||
; Implementation of LongJump() on IA-32.
|
; Implementation of _LongJump() on IA-32.
|
||||||
;
|
;
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
.model flat
|
.model flat
|
||||||
.code
|
.code
|
||||||
|
|
||||||
_LongJump PROC
|
__LongJump PROC
|
||||||
pop eax
|
pop eax
|
||||||
pop edx
|
pop edx
|
||||||
pop eax
|
pop eax
|
||||||
|
@ -33,6 +33,6 @@ _LongJump PROC
|
||||||
mov ebp, [edx + 12]
|
mov ebp, [edx + 12]
|
||||||
mov esp, [edx + 16]
|
mov esp, [edx + 16]
|
||||||
jmp dword ptr [edx + 20]
|
jmp dword ptr [edx + 20]
|
||||||
_LongJump ENDP
|
__LongJump ENDP
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
#
|
#
|
||||||
# Abstract:
|
# Abstract:
|
||||||
#
|
#
|
||||||
# Implementation of LongJump() on IA-32.
|
# Implementation of _LongJump() on IA-32.
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.global _LongJump
|
.global __LongJump
|
||||||
_LongJump:
|
__LongJump:
|
||||||
popl %eax
|
popl %eax
|
||||||
popl %edx
|
popl %edx
|
||||||
popl %eax
|
popl %eax
|
||||||
|
|
Loading…
Reference in New Issue