Program loading, build system for apps, and badly-made lib linking.

This commit is contained in:
xamidev
2024-09-14 22:39:06 +02:00
parent 87bb1d96fd
commit 03b712ace0
8 changed files with 109 additions and 4 deletions

10
program.ld Normal file
View File

@@ -0,0 +1,10 @@
OUTPUT_FORMAT(binary)
ENTRY(main)
SECTIONS
{
. = 0x1000;
.text : { *(.text*) }
.data : { *(.data*) }
.bss : { *(.bss*) }
}