Load raw C binary + docs

This commit is contained in:
2026-05-08 12:38:16 +02:00
parent 9a1a0e428a
commit eb8a03facd
10 changed files with 169 additions and 50 deletions
+22
View File
@@ -0,0 +1,22 @@
ENTRY(_start)
SECTIONS
{
. = 0x400000;
.text : {
*(.text*)
}
.rodata : {
*(.rodata*)
}
.data : {
*(.data*)
}
.bss : {
*(.bss*)
}
}