mirror of
https://github.com/Decscots/Lockpick_RCM.git
synced 2024-11-01 11:25:09 +01:00
21 lines
284 B
Plaintext
21 lines
284 B
Plaintext
|
ENTRY(_start)
|
||
|
|
||
|
SECTIONS {
|
||
|
PROVIDE(__ipl_start = LDR_LOAD_ADDR);
|
||
|
. = __ipl_start;
|
||
|
.text : {
|
||
|
*(.text._start);
|
||
|
KEEP(*(._boot_cfg));
|
||
|
*(.text*);
|
||
|
}
|
||
|
.data : {
|
||
|
*(.data*);
|
||
|
*(.rodata*);
|
||
|
*(._payload_00);
|
||
|
*(._payload_01);
|
||
|
}
|
||
|
__ldr_end = .;
|
||
|
. = ALIGN(0x10);
|
||
|
__ipl_end = .;
|
||
|
}
|