forked from auracaster/openocd
Alan Carvalho de Assis <acassis@gmail.com> - testcase
git-svn-id: svn://svn.berlios.de/openocd/trunk@1319 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
18
testing/examples/ledtest-imx31pdk/ldscript
Normal file
18
testing/examples/ledtest-imx31pdk/ldscript
Normal file
@@ -0,0 +1,18 @@
|
||||
SECTIONS
|
||||
{
|
||||
. = 0x80000100;
|
||||
.text : { *(.text) }
|
||||
.data ALIGN(0x10): { *(.data) }
|
||||
.bss ALIGN(0x10): {
|
||||
__bss_start__ = ABSOLUTE(.);
|
||||
*(.bss)
|
||||
. += 0x100;
|
||||
}
|
||||
__bss_end__ = .;
|
||||
PROVIDE (__stack = .);
|
||||
_end = .;
|
||||
.debug_info 0 : { *(.debug_info) }
|
||||
.debug_abbrev 0 : { *(.debug_abbrev) }
|
||||
.debug_line 0 : { *(.debug_line) }
|
||||
.debug_frame 0 : { *(.debug_frame) }
|
||||
}
|
||||
Reference in New Issue
Block a user