- Remove use of useless EXT macro
authorEric Biederman <ebiederm@xmission.com>
Sat, 12 Jul 2003 01:39:05 +0000 (01:39 +0000)
committerEric Biederman <ebiederm@xmission.com>
Sat, 12 Jul 2003 01:39:05 +0000 (01:39 +0000)
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@950 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/cpu/i386/reset16.inc

index 190b75a32d525add5dca5903c637249137bdc247..7ea92774b683153163bbeab28fefabb6681749bb 100644 (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