diff options
Diffstat (limited to 'MdeModulePkg/Core/DxeIplPeim/Ia32/IdtVectorAsm.S')
-rw-r--r-- | MdeModulePkg/Core/DxeIplPeim/Ia32/IdtVectorAsm.S | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/MdeModulePkg/Core/DxeIplPeim/Ia32/IdtVectorAsm.S b/MdeModulePkg/Core/DxeIplPeim/Ia32/IdtVectorAsm.S index ee02a4104b..a152b5033c 100644 --- a/MdeModulePkg/Core/DxeIplPeim/Ia32/IdtVectorAsm.S +++ b/MdeModulePkg/Core/DxeIplPeim/Ia32/IdtVectorAsm.S @@ -27,26 +27,26 @@ ;
;-----------------------------------------------------------------------
*/
-@VectorTemplateBase:
+VectorTemplateBase:
pushl %eax
.byte 0x6a # push #VectorNum
-@VectorNum:
+VectorNum:
.byte 0
movl CommonInterruptEntry, %eax
jmp *%eax
-@VectorTemplateEnd:
+VectorTemplateEnd:
ASM_PFX(AsmGetVectorTemplatInfo):
movl 4(%esp), %ecx
- movl $@VectorTemplateBase, (%ecx)
- movl $(@VectorTemplateEnd - @VectorTemplateBase), %eax
+ movl $VectorTemplateBase, (%ecx)
+ movl $(VectorTemplateEnd - VectorTemplateBase), %eax
ret
ASM_PFX(AsmVectorFixup):
movl 8(%esp), %eax
movl 4(%esp), %ecx
- movb %al, (@VectorNum - @VectorTemplateBase)(%ecx)
+ movb %al, (VectorNum - VectorTemplateBase)(%ecx)
ret
/*
@@ -72,8 +72,8 @@ ASM_PFX(AsmVectorFixup): CommonInterruptEntry:
cli
-@@:
- jmp @@
+1:
+ jmp 1b
|