b451deb133074850eaa3c337a30bf655e773ff6b
[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         _bogus = ASSERT(_start >= 0xffff0000, "_start too low. Please decrease ROM_IMAGE_SIZE");
9         _ROMTOP = 0xfffffff0;
10         . = _ROMTOP;
11         .reset . : {
12                 *(.reset)
13                 . = 15 ;
14                 BYTE(0x00);
15         } 
16 }