So it has come to this.

This commit is contained in:
nwert
2018-05-01 17:15:48 +12:00
parent 6181b39f14
commit 8365426fc3
94 changed files with 23324 additions and 1283 deletions

21
ipl/link.ld Executable file
View File

@@ -0,0 +1,21 @@
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 = .;
}
}