- 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"
.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