Initial lockpick_rcm code

+ small modifications, just for fun
This commit is contained in:
Such Meme, Many Skill
2019-08-14 21:29:04 +02:00
parent 89b7656ca5
commit fa0c1a2808
100 changed files with 28222 additions and 0 deletions

23
source/link.ld Normal file
View File

@@ -0,0 +1,23 @@
ENTRY(_start)
SECTIONS {
PROVIDE(__ipl_start = IPL_LOAD_ADDR);
. = __ipl_start;
.text : {
*(.text._start);
*(._boot_cfg);
*(.text*);
}
.data : {
*(.data*);
*(.rodata*);
}
. = ALIGN(0x10);
__ipl_end = .;
.bss : {
__bss_start = .;
*(COMMON)
*(.bss*)
__bss_end = .;
}
}