Move test in a specific folder
This commit is contained in:
13
example/linker.ld
Normal file
13
example/linker.ld
Normal file
@@ -0,0 +1,13 @@
|
||||
SECTIONS
|
||||
{
|
||||
. = 0x80200000;
|
||||
|
||||
.text : {
|
||||
*(.text.entry) /* entry point */
|
||||
*(.text*) /* all text sections */
|
||||
}
|
||||
|
||||
.rodata : { *(.rodata*) }
|
||||
.data : { *(.data*) }
|
||||
.bss : { *(.bss*) }
|
||||
}
|
||||
Reference in New Issue
Block a user