Alan Carvalho de Assis <acassis@gmail.com> test app for imx27

git-svn-id: svn://svn.berlios.de/openocd/trunk@1323 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe
2009-01-15 13:22:04 +00:00
parent 8fc9bcb7f5
commit 2e0f28149d
6 changed files with 203 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
SECTIONS
{
. = 0xA0000000;
.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) }
}