4aa88f083264bddd28afb6dfd633c2cf202cfa45
[seabios.git] / src / rombios32.lds.S
1 // Linker definitions for 32 bit code
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 //
5 // This file may be distributed under the terms of the GNU LGPLv3 license.
6
7 #include "config.h" // BUILD_BIOS_ADDR
8
9 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
10 OUTPUT_ARCH("i386")
11 SECTIONS
12 {
13         . = BUILD_BIOS_ADDR ;
14         code32_start = . ;
15         .text : {
16                 *(.text)
17                 code32_rodata = . ;
18                 *(.rodata*)
19                 *(.data)
20                 *(.bss)
21                 *(COMMON)
22                 }
23         code32_end = . ;
24 }