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:
|
||||
;
|
||||
; Implementation of LongJump() on IA-32.
|
||||
; Implementation of _LongJump() on IA-32.
|
||||
;
|
||||
;------------------------------------------------------------------------------
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
.model flat
|
||||
.code
|
||||
|
||||
_LongJump PROC
|
||||
__LongJump PROC
|
||||
pop eax
|
||||
pop edx
|
||||
pop eax
|
||||
|
@ -33,6 +33,6 @@ _LongJump PROC
|
|||
mov ebp, [edx + 12]
|
||||
mov esp, [edx + 16]
|
||||
jmp dword ptr [edx + 20]
|
||||
_LongJump ENDP
|
||||
__LongJump ENDP
|
||||
|
||||
END
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#
|
||||
# Abstract:
|
||||
#
|
||||
# Implementation of LongJump() on IA-32.
|
||||
# Implementation of _LongJump() on IA-32.
|
||||
#
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
|
@ -23,8 +23,8 @@
|
|||
|
||||
|
||||
|
||||
.global _LongJump
|
||||
_LongJump:
|
||||
.global __LongJump
|
||||
__LongJump:
|
||||
popl %eax
|
||||
popl %edx
|
||||
popl %eax
|
||||
|
|
Loading…
Reference in New Issue