mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-01 16:31:43 +00:00
0462f3b252
This adds support for exception handling. It should provide simple and fast reporting of crucial info and full restoration without powering off.
25 lines
339 B
Text
25 lines
339 B
Text
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
PROVIDE(__ipl_start = IPL_LOAD_ADDR);
|
|
. = __ipl_start;
|
|
.text : {
|
|
*(.text._start);
|
|
*(._boot_cfg);
|
|
*(._ipl_version);
|
|
*(.text._irq_setup);
|
|
*(.text*);
|
|
}
|
|
.data : {
|
|
*(.data*);
|
|
*(.rodata*);
|
|
}
|
|
. = ALIGN(0x10);
|
|
__ipl_end = .;
|
|
.bss : {
|
|
__bss_start = .;
|
|
*(COMMON)
|
|
*(.bss*)
|
|
__bss_end = .;
|
|
}
|
|
}
|