Move test in a specific folder

This commit is contained in:
Fabio Scotto di Santolo
2025-11-29 18:47:37 +01:00
parent c59b4004e5
commit 7eaf73e6fe
6 changed files with 0 additions and 0 deletions

13
example/linker.ld Normal file
View File

@@ -0,0 +1,13 @@
SECTIONS
{
. = 0x80200000;
.text : {
*(.text.entry) /* entry point */
*(.text*) /* all text sections */
}
.rodata : { *(.rodata*) }
.data : { *(.data*) }
.bss : { *(.bss*) }
}