This commit is contained in:
2025-09-23 13:44:14 +03:00
commit a84b8fcfde
91 changed files with 88177 additions and 0 deletions

13
FIRMWARE/bram.ld Normal file
View File

@@ -0,0 +1,13 @@
MEMORY
{
BRAM (RWX) : ORIGIN = 0x0000, LENGTH = 0x1800 /* 6kB RAM */
}
SECTIONS
{
everything :
{
. = ALIGN(4);
start.o (.text)
*(.*)
} >BRAM
}