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:
oharboe
2009-01-14 19:30:51 +00:00
parent bea9789cc6
commit d8490491e6
6 changed files with 301 additions and 0 deletions

View 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) }
}