mirror of
https://github.com/CTCaer/hekate
synced 2024-11-03 02:26:35 +00:00
80d9718770
The array/stringop warning removals are undesirable. Consider removing them when a new GCC version moves back to saner checks for pointers.
24 lines
328 B
Text
24 lines
328 B
Text
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
PROVIDE(__ipl_start = NYX_LOAD_ADDR);
|
|
. = __ipl_start;
|
|
.text : {
|
|
*(.text._start);
|
|
KEEP(*(._ipl_version));
|
|
*(.text._irq_setup);
|
|
*(.text*);
|
|
}
|
|
.data : {
|
|
*(.data*);
|
|
*(.rodata*);
|
|
}
|
|
. = ALIGN(0x10);
|
|
__ipl_end = .;
|
|
.bss : {
|
|
__bss_start = .;
|
|
*(COMMON)
|
|
*(.bss*)
|
|
__bss_end = .;
|
|
}
|
|
}
|