1
0
Fork 0
mirror of https://github.com/CTCaer/hekate.git synced 2024-09-19 21:44:57 +01:00
hekate/bootloader/link.ld

22 lines
257 B
Plaintext
Raw Normal View History

2018-05-01 06:15:48 +01:00
ENTRY(_start)
SECTIONS {
2018-07-01 03:03:17 +01:00
PROVIDE(__ipl_start = 0x40008000);
2018-05-01 06:15:48 +01:00
. = __ipl_start;
.text : {
*(.text*);
}
.data : {
*(.data*);
*(.rodata*);
}
. = ALIGN(0x10);
__ipl_end = .;
.bss : {
__bss_start = .;
*(COMMON)
*(.bss*)
__bss_end = .;
}
}