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/cpu/i386/entry32.inc | |
parent | 50086df616727646027c46116e43799cc9d3a332 (diff) |
- Compile fixes
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@963 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/i386/entry32.inc')
-rw-r--r-- | src/cpu/i386/entry32.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu/i386/entry32.inc b/src/cpu/i386/entry32.inc index 8ccd638e95..6f55f00203 100644 --- a/src/cpu/i386/entry32.inc +++ b/src/cpu/i386/entry32.inc @@ -6,10 +6,10 @@ .code32 .align 4 -.globl EXT(gdtptr) +.globl gdtptr gdt: -EXT(gdtptr): +gdtptr: .word gdt_end - gdt -1 /* compute the table limit */ .long gdt /* we know the offset */ .word 0 @@ -37,8 +37,8 @@ gdt_end: * cache will be reloaded. */ .align 4 -.globl EXT(protected_start) -EXT(protected_start): +.globl protected_start +protected_start: lgdt %cs:gdtptr ljmp $ROM_CODE_SEG, $__protected_start |