mirror of
https://github.com/Decscots/Lockpick_RCM.git
synced 2024-11-01 09:05:10 +01:00
26 lines
351 B
Plaintext
26 lines
351 B
Plaintext
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
PROVIDE(__ipl_start = IPL_LOAD_ADDR);
|
|
. = __ipl_start;
|
|
.text : {
|
|
*(.text._start);
|
|
KEEP(*(._boot_cfg));
|
|
KEEP(*(._ipl_version));
|
|
*(.text._irq_setup);
|
|
*(.text*);
|
|
}
|
|
.data : {
|
|
*(.data*);
|
|
*(.rodata*);
|
|
}
|
|
. = ALIGN(0x10);
|
|
__ipl_end = .;
|
|
.bss : {
|
|
__bss_start = .;
|
|
*(COMMON)
|
|
*(.bss*)
|
|
__bss_end = .;
|
|
}
|
|
}
|