c52afdb784c5ad5dabecb45b822848b74f5b5fbd
[seabios.git] / src / rombios16.lds.S
1 // Linker definitions for 16bit 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         . = ( _code32_code32_end - BUILD_BIOS_ADDR ) ;
14         . = ALIGN(16) ;
15         code16_start = . ;
16         .text16 : {
17
18 // The actual placement of the 16bit sections is determined by the
19 // script tools/layoutrom.py
20 #include "../out/romlayout.lds"
21
22                 }
23         code16_end = . ;
24
25         // Discard regular data sections to force a link error if
26         // 16bit code attempts to access data not marked with VAR16.
27         /DISCARD/ : { *(.text*) *(.rodata*) *(.data*) *(.bss*) *(COMMON) }
28 }