can run entrypoint on user elf

syscalls via call_abi are still not working
This commit is contained in:
2025-08-03 18:55:26 -06:00
parent aa00e9728d
commit 6dcdd88a0f
10 changed files with 193 additions and 83 deletions

21
user-apps/link.x Normal file
View File

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