blob: 249ebd5c1931eb7e2c621c759f3f7202c9d5949b [file] [log] [blame]
ENTRY(_start)
SECTIONS
{
. = 0x1000;
__cpu_reset = 0xdeadbeef;
.text . : {
. = ALIGN(16);
_start = . ;
*(.rom.text);
*(.text)
. = ALIGN(16);
}
.data . : {
. = ALIGN(16);
*(.rom.data);
*(.data)
. = ALIGN(16);
}
}