src/cpu: Remove unnecessary whitespace
[coreboot.git] / src / cpu / x86 / 16bit / reset16.ld
blobd3c618a93104089704767edc0145a89abdc50856
1 /*
2  *      _ROMTOP                 : The top of the ROM used where we
3  *                                need to put the reset vector.
4  */
6 SECTIONS {
7         /* Trigger an error if I have an unuseable start address */
8         _bogus = ASSERT(_start16bit >= 0xffff0000, "_start16bit too low. Please report.");
9         _ROMTOP = 0xfffffff0;
10         . = _ROMTOP;
11         .reset . : {
12                 *(.reset);
13                 . = 15;
14                 BYTE(0x00);
15         }