Program loading, build system for apps, and badly-made lib linking.
This commit is contained in:
10
program.ld
Normal file
10
program.ld
Normal file
@@ -0,0 +1,10 @@
|
||||
OUTPUT_FORMAT(binary)
|
||||
ENTRY(main)
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
. = 0x1000;
|
||||
.text : { *(.text*) }
|
||||
.data : { *(.data*) }
|
||||
.bss : { *(.bss*) }
|
||||
}
|
||||
Reference in New Issue
Block a user