Initial commit

This commit is contained in:
JP Stringham
2026-02-09 16:24:18 -05:00
commit a488fd84af
7 changed files with 886 additions and 0 deletions

13
memory.x Normal file
View File

@@ -0,0 +1,13 @@
MEMORY {
BOOT_LOADER : ORIGIN = 0x10000000, LENGTH = 0x100
FLASH : ORIGIN = 0x10000100, LENGTH = 2048K - 0x100
RAM : ORIGIN = 0x20000000, LENGTH = 256K
}
SECTIONS {
/* ### Boot loader */
.boot_loader ORIGIN(BOOT_LOADER) :
{
KEEP(*(.boot_loader));
} > BOOT_LOADER
} INSERT BEFORE .text;