From ae948f78e6720067f86ef917b41f2628ce8f205e Mon Sep 17 00:00:00 2001 From: Eric Biederman Date: Mon, 14 Jul 2003 20:40:38 +0000 Subject: - Compile fixes git-svn-id: svn://svn.coreboot.org/coreboot/trunk@963 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/i386/lib/c_start.S | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/arch/i386/lib') diff --git a/src/arch/i386/lib/c_start.S b/src/arch/i386/lib/c_start.S index f5ca3388f8..48c1514a1e 100644 --- a/src/arch/i386/lib/c_start.S +++ b/src/arch/i386/lib/c_start.S @@ -20,16 +20,16 @@ _start: intel_chip_post_macro(0x13) /* post 12 */ /** clear stack */ - leal EXT(_stack), %edi - movl $EXT(_estack), %ecx + leal _stack, %edi + movl $_estack, %ecx subl %edi, %ecx xorl %eax, %eax rep stosb /** clear bss */ - leal EXT(_bss), %edi - movl $EXT(_ebss), %ecx + leal _bss, %edi + movl $_ebss, %ecx subl %edi, %ecx jz .Lnobss xorl %eax, %eax @@ -50,7 +50,7 @@ _start: 1: addl $4, %ebx cmpl $(MAX_CPUS << 2), %ebx je 2 - cmpl %eax, EXT(initial_apicid)(%ebx) + cmpl %eax, initial_apicid(%ebx) jne 1b 2: shrl $2, %ebx @@ -78,7 +78,7 @@ _start: movl %ebp, %esp /* The boot_complete flag has already been pushed */ - call EXT(hardwaremain) + call hardwaremain /*NOTREACHED*/ .Lhlt: intel_chip_post_macro(0xee) /* post fe */ -- cgit v1.2.3