mirror of
https://github.com/CTCaer/hekate
synced 2024-11-03 02:26:35 +00:00
24 lines
299 B
Text
24 lines
299 B
Text
|
ENTRY(_start)
|
||
|
|
||
|
SECTIONS {
|
||
|
PROVIDE(__ipl_start = NYX_LOAD_ADDR);
|
||
|
. = __ipl_start;
|
||
|
.text : {
|
||
|
*(.text._start);
|
||
|
*(._ipl_version);
|
||
|
*(.text*);
|
||
|
}
|
||
|
.data : {
|
||
|
*(.data*);
|
||
|
*(.rodata*);
|
||
|
}
|
||
|
. = ALIGN(0x10);
|
||
|
__ipl_end = .;
|
||
|
.bss : {
|
||
|
__bss_start = .;
|
||
|
*(COMMON)
|
||
|
*(.bss*)
|
||
|
__bss_end = .;
|
||
|
}
|
||
|
}
|