foot/foot.script
shylie 6007426eb3
Some checks failed
Test / build (push) Failing after 4s
Add vcd waveform tracing
2026-03-25 01:43:20 -04:00

25 lines
238 B
Plaintext

MEMORY
{
default (RWX) : ORIGIN = 0x0, LENGTH = 256K
}
ENTRY(entry);
SECTIONS
{
.text :
{
*(.text)
*(.text.*)
_etext = .;
}
.data : AT(_etext)
{
*(.rodata)
*(.rodata.*)
*(.data)
*(.data.*)
}
}