Files
picocalc-os-rs/user-apps/link.x
sawyer bristol 6dcdd88a0f can run entrypoint on user elf
syscalls via call_abi are still not working
2025-08-03 18:55:26 -06:00

22 lines
240 B
Plaintext

MEMORY
{
RAM : ORIGIN = 0x00000000, LENGTH = 256K
}
SECTIONS
{
.text : {
*(.text .text.*);
*(.rodata .rodata.*);
} > RAM
.data : {
*(.data .data.*);
} > RAM
.bss : {
*(.bss .bss.*);
*(COMMON);
} > RAM
}