diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-01-01 17:45:25 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-01-01 17:45:25 +0000 |
commit | e9fd3ba81330391dbb28181a98ec1e364736b6e5 (patch) | |
tree | c54114d87baece66d8cdeff83c44a51de468253b /demos/ARM7-LPC214x-GCC | |
parent | 715ee3682088ede89a1da3ab082056d626750067 (diff) | |
download | ChibiOS-e9fd3ba81330391dbb28181a98ec1e364736b6e5.tar.gz ChibiOS-e9fd3ba81330391dbb28181a98ec1e364736b6e5.tar.bz2 ChibiOS-e9fd3ba81330391dbb28181a98ec1e364736b6e5.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@163 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ARM7-LPC214x-GCC')
-rw-r--r-- | demos/ARM7-LPC214x-GCC/ch.ld | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/demos/ARM7-LPC214x-GCC/ch.ld b/demos/ARM7-LPC214x-GCC/ch.ld index ace1c3b53..a71fac21b 100644 --- a/demos/ARM7-LPC214x-GCC/ch.ld +++ b/demos/ARM7-LPC214x-GCC/ch.ld @@ -64,6 +64,8 @@ SECTIONS _data = .;
*(.data)
. = ALIGN(4);
+ *(.ramtext)
+ . = ALIGN(4);
_edata = .;
} > ram AT > flash
|