aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorEric Biederman <ebiederm@xmission.com>2003-07-12 01:39:05 +0000
committerEric Biederman <ebiederm@xmission.com>2003-07-12 01:39:05 +0000
commit58f74a25147bb93e4e7b7ecb6676ac0c462cf735 (patch)
tree2680a2b0a863a94d49860657fbc595ccf376d960 /src/cpu
parent64f7162e1746b543a01ae3084d1d615cc8e966d6 (diff)
- Remove use of useless EXT macro
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@950 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu')
-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