coreboot-kgpe-d16/util/romcc/tests/ldscript.ld

21 lines
238 B
Plaintext
Raw Normal View History

ENTRY(_start)
SECTIONS
{
. = 0x20000;
__cpu_reset = 0xdeadbeef;
.text . : {
. = ALIGN(16);
_start = . ;
*(.rom.text);
*(.text)
. = ALIGN(16);
}
.data . : {
. = ALIGN(16);
*(.rom.data);
*(.data)
. = ALIGN(16);
}
}