- Remove use of useless EXT macro

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@950 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Eric Biederman 2003-07-12 01:39:05 +00:00
parent 64f7162e17
commit 58f74a2514
1 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
.section ".reset" .section ".reset"
.code16 .code16
.globl EXT(reset_vector) .globl reset_vector
EXT(reset_vector): reset_vector:
#if _ROMBASE >= 0xffff0000 #if _ROMBASE >= 0xffff0000
/* Hmm. /* Hmm.
* _start_offset is the low 16 bits of _start. * _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 * other assemblers to tell it where the segment registers
* are pointing in memory right now. * are pointing in memory right now.
*/ */
jmp EXT(_start) jmp _start
#elif (_ROMBASE < 0x100000) #elif (_ROMBASE < 0x100000)
ljmp $((_ROMBASE & 0xf0000)>>4),$EXT(_start_offset); ljmp $((_ROMBASE & 0xf0000)>>4),$_start_offse);
#else #else
#error _ROMBASE is an unsupported value #error _ROMBASE is an unsupported value
#endif #endif
. = 0x8; . = 0x8;
.code32 .code32
jmp EXT(protected_start) jmp protected_start
.previous .previous