- To reduce confuse rename the parts of linuxbios bios that run from
[coreboot.git] / src / cpu / x86 / 16bit / reset16.lds
1 /*
2  *      _ROMTOP                 : The top of the rom used where we
3  *                                need to put the reset vector.
4  */
5
6 SECTIONS {
7         /* Trigger an error if I have an unuseable start address */
8         _ROMTOP = (_start >= 0xffff0000) ? 0xfffffff0 : 0xffffffff8;
9         . = _ROMTOP;
10         .reset . : {
11                 *(.reset)
12                 . = 15 ;
13                 BYTE(0x00);
14         } 
15 }
16