Lockpick_RCM/source/link.ld

26 lines
351 B
Plaintext
Raw Normal View History

2019-03-05 00:05:42 +01:00
ENTRY(_start)
SECTIONS {
PROVIDE(__ipl_start = IPL_LOAD_ADDR);
. = __ipl_start;
.text : {
*(.text._start);
2021-05-12 23:38:34 +02:00
KEEP(*(._boot_cfg));
2021-09-16 01:46:14 +02:00
KEEP(*(._ipl_version));
2021-05-12 23:38:34 +02:00
*(.text._irq_setup);
2019-03-05 00:05:42 +01:00
*(.text*);
}
.data : {
*(.data*);
*(.rodata*);
}
. = ALIGN(0x10);
__ipl_end = .;
.bss : {
__bss_start = .;
*(COMMON)
*(.bss*)
__bss_end = .;
}
}