Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / cpu / x86 / 16bit / reset16.lds
index f32597c00cc7313654fbac3fb7ba07a483206995..cec03d6bc6612fa4ddfa7a6c0a3d0949238f5f0c 100644 (file)
@@ -5,11 +5,12 @@
 
 SECTIONS {
        /* Trigger an error if I have an unuseable start address */
-       _ROMTOP = (_start >= 0xffff0000) ? 0xfffffff0 : 0xfffffff8;
+       _bogus = ASSERT(_start >= 0xffff0000, "_start too low. Please decrease CONFIG_ROM_IMAGE_SIZE");
+       _ROMTOP = 0xfffffff0;
        . = _ROMTOP;
        .reset . : {
                *(.reset)
                . = 15 ;
                BYTE(0x00);
-       } 
+       }
 }