summaryrefslogtreecommitdiff
path: root/DuetPkg
diff options
context:
space:
mode:
authorxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>2009-05-20 10:26:52 +0000
committerxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>2009-05-20 10:26:52 +0000
commitced10e2ed2097c10a6b96b1c3a3a1ffbf0a23df7 (patch)
treebe12b7a277a9fcc83c0e2e17dd0d6510cfd7579c /DuetPkg
parent132f41f0a92082775d931067089a63ca50367225 (diff)
downloadedk2-platforms-ced10e2ed2097c10a6b96b1c3a3a1ffbf0a23df7.tar.xz
Replace .globl with ASM_GLOBAL
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8347 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg')
-rw-r--r--DuetPkg/CpuDxe/Ia32/CpuInterrupt.S10
-rwxr-xr-xDuetPkg/CpuDxe/X64/CpuInterrupt.S10
2 files changed, 10 insertions, 10 deletions
diff --git a/DuetPkg/CpuDxe/Ia32/CpuInterrupt.S b/DuetPkg/CpuDxe/Ia32/CpuInterrupt.S
index 0502c3543b..52b1f27a87 100644
--- a/DuetPkg/CpuDxe/Ia32/CpuInterrupt.S
+++ b/DuetPkg/CpuDxe/Ia32/CpuInterrupt.S
@@ -24,11 +24,11 @@
#EXTERN mTimerVector: DWORD
.data
- .globl ASM_PFX(mExceptionCodeSize)
+ ASM_GLOBAL ASM_PFX(mExceptionCodeSize)
ASM_PFX(mExceptionCodeSize): .long 9
.text
- .globl ASM_PFX(InitDescriptor)
+ ASM_GLOBAL ASM_PFX(InitDescriptor)
ASM_PFX(InitDescriptor):
movl $GDT_BASE,%eax # EAX=PHYSICAL address of gdt
@@ -44,7 +44,7 @@ ASM_PFX(InitDescriptor):
# UINTN Vector,
# VOID (*Handler)(VOID)
# )
- .globl ASM_PFX(InstallInterruptHandler)
+ ASM_GLOBAL ASM_PFX(InstallInterruptHandler)
ASM_PFX(InstallInterruptHandler):
# Vector:DWORD @ 4(%esp)
# Handler:DWORD @ 8(%esp)
@@ -79,7 +79,7 @@ ASM_PFX(InstallInterruptHandler):
.endm
.align 2
- .globl ASM_PFX(SystemExceptionHandler)
+ ASM_GLOBAL ASM_PFX(SystemExceptionHandler)
ASM_PFX(SystemExceptionHandler):
INT0:
pushl $0x0 # push error code place holder on the stack
@@ -206,7 +206,7 @@ INTUnknown:
JmpCommonIdtEntry
.endr
- .globl ASM_PFX(SystemTimerHandler)
+ ASM_GLOBAL ASM_PFX(SystemTimerHandler)
ASM_PFX(SystemTimerHandler):
pushl $0
pushl $ASM_PFX(mTimerVector)
diff --git a/DuetPkg/CpuDxe/X64/CpuInterrupt.S b/DuetPkg/CpuDxe/X64/CpuInterrupt.S
index f85792bccb..94559eea1b 100755
--- a/DuetPkg/CpuDxe/X64/CpuInterrupt.S
+++ b/DuetPkg/CpuDxe/X64/CpuInterrupt.S
@@ -24,11 +24,11 @@
#EXTERN mTimerVector: DWORD
.data
- .globl ASM_PFX(mExceptionCodeSize)
+ ASM_GLOBAL ASM_PFX(mExceptionCodeSize)
ASM_PFX(mExceptionCodeSize): .long 9
.text
- .globl ASM_PFX(InitDescriptor)
+ ASM_GLOBAL ASM_PFX(InitDescriptor)
ASM_PFX(InitDescriptor):
movq $GDT_BASE,%rax # EAX=PHYSICAL address of gdt
@@ -47,7 +47,7 @@ ASM_PFX(InitDescriptor):
# UINTN Vector,
# VOID (*Handler)(VOID)
# )
- .globl ASM_PFX(InstallInterruptHandler)
+ ASM_GLOBAL ASM_PFX(InstallInterruptHandler)
ASM_PFX(InstallInterruptHandler):
# Vector:DWORD @ 4(%esp)
# Handler:DWORD @ 8(%esp)
@@ -84,7 +84,7 @@ ASM_PFX(InstallInterruptHandler):
.endm
.align 2
- .globl ASM_PFX(SystemExceptionHandler)
+ ASM_GLOBAL ASM_PFX(SystemExceptionHandler)
ASM_PFX(SystemExceptionHandler):
INT0:
push $0x0 # push error code place holder on the stack
@@ -211,7 +211,7 @@ INTUnknown:
JmpCommonIdtEntry
.endr
- .globl ASM_PFX(SystemTimerHandler)
+ ASM_GLOBAL ASM_PFX(SystemTimerHandler)
ASM_PFX(SystemTimerHandler):
push $0
push $ASM_PFX(mTimerVector)