Add detection/dump support for ServerEngines SE-SM 4210-P01.
[coreboot.git] / util / romcc / tests / ldscript.ld
1
2 ENTRY(_start)
3
4 SECTIONS
5 {
6         . = 0x1000;
7         __cpu_reset = 0xdeadbeef;
8         .text . : {
9                 . = ALIGN(16);
10                 _start = . ;
11                 *(.rom.text);
12                 *(.text)
13                 . = ALIGN(16);
14         }
15         .data . : {
16                 . = ALIGN(16);
17                 *(.rom.data);
18                 *(.data)
19                 . = ALIGN(16);
20         }
21 }