Add support for 32bit PCI BIOS entry.
[seabios.git] / src / rombios32seg.lds.S
1 // Linker definitions for 32bit segmented code
2 //
3 // Copyright (C) 2009  Kevin O'Connor <kevin@koconnor.net>
4 //
5 // This file may be distributed under the terms of the GNU LGPLv3 license.
6
7 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
8 OUTPUT_ARCH("i386")
9 SECTIONS
10 {
11         .text32seg code32seg_start : {
12                 *(.text32seg)
13         }
14         /DISCARD/ : { *(.discard*) }
15 }