Add hekate loader

This commit is contained in:
CTCaer
2020-07-04 22:12:12 +03:00
parent da0cdf1bd0
commit 1ceb380f6f
12 changed files with 1095 additions and 3 deletions

22
loader/link.ld Normal file
View File

@@ -0,0 +1,22 @@
ENTRY(_start)
SECTIONS {
PROVIDE(__ipl_start = LDR_LOAD_ADDR);
. = __ipl_start;
.text : {
*(.text._start);
*(._boot_cfg);
*(._ipl_version);
*(._octopus);
*(.text*);
}
.data : {
*(.data*);
*(.rodata*);
*(._payload_00);
*(._payload_01);
}
__ldr_end = .;
. = ALIGN(0x10);
__ipl_end = .;
}