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