diff options
author | Eric Biederman <ebiederm@xmission.com> | 2003-07-14 20:40:38 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2003-07-14 20:40:38 +0000 |
commit | ae948f78e6720067f86ef917b41f2628ce8f205e (patch) | |
tree | b7eea8f11397fc73cb80a241b2d49d6798de30bc /src/arch/i386/lib | |
parent | 50086df616727646027c46116e43799cc9d3a332 (diff) |
- Compile fixes
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@963 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/lib')
-rw-r--r-- | src/arch/i386/lib/c_start.S | 12 |
1 files changed, 6 insertions, 6 deletions
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 */ |