summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cpu/i386/reset16.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cpu/i386/reset16.inc b/src/cpu/i386/reset16.inc
index 190b75a32d..7ea92774b6 100644
--- a/src/cpu/i386/reset16.inc
+++ b/src/cpu/i386/reset16.inc
@@ -1,7 +1,7 @@
.section ".reset"
.code16
-.globl EXT(reset_vector)
-EXT(reset_vector):
+.globl reset_vector
+reset_vector:
#if _ROMBASE >= 0xffff0000
/* Hmm.
* _start_offset is the low 16 bits of _start.
@@ -13,15 +13,15 @@ EXT(reset_vector):
* other assemblers to tell it where the segment registers
* are pointing in memory right now.
*/
- jmp EXT(_start)
+ jmp _start
#elif (_ROMBASE < 0x100000)
- ljmp $((_ROMBASE & 0xf0000)>>4),$EXT(_start_offset);
+ ljmp $((_ROMBASE & 0xf0000)>>4),$_start_offse);
#else
#error _ROMBASE is an unsupported value
#endif
. = 0x8;
.code32
- jmp EXT(protected_start)
+ jmp protected_start
.previous