Initial Commit

This commit is contained in:
Liam Kerr 2026-02-08 21:23:47 +00:00
commit 7f943be8f0
7 changed files with 114 additions and 0 deletions

33
linker.ld Normal file
View file

@ -0,0 +1,33 @@
ENTRY(_start)
SECTIONS
{
. = 0x80000000;
.text : ALIGN(4K) {
/* This matches the .section .text.boot in your assembly */
*(.text.boot)
*(.text .text.*)
}
.rodata : ALIGN(4K) {
*(.rodata .rodata.*)
}
.data : ALIGN(4K) {
*(.data .data.*)
}
.bss : ALIGN(4K) {
PROVIDE(_bss_start = .);
*(.bss .bss.*)
*(COMMON)
PROVIDE(_bss_end = .);
}
/* Keep the stack at the very end to prevent it from overwriting code if it overflows */
. = ALIGN(16);
PROVIDE(_stack_bottom = .);
. += 4096;
PROVIDE(stack_top = .);
}