mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-02 11:30:41 +00:00
2fb37db707
This storage allows you to reboot from HOS to the selected ini boot entry. In the future it will be used for far more.
24 lines
293 B
Plaintext
24 lines
293 B
Plaintext
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
PROVIDE(__ipl_start = IPL_LOAD_ADDR);
|
|
. = __ipl_start;
|
|
.text : {
|
|
*(.text._start);
|
|
. = . + 36;
|
|
*(.text*);
|
|
}
|
|
.data : {
|
|
*(.data*);
|
|
*(.rodata*);
|
|
}
|
|
. = ALIGN(0x10);
|
|
__ipl_end = .;
|
|
.bss : {
|
|
__bss_start = .;
|
|
*(COMMON)
|
|
*(.bss*)
|
|
__bss_end = .;
|
|
}
|
|
}
|