summaryrefslogtreecommitdiff
path: root/nuttx/configs/demo9s12ne64/ostest
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-03 23:08:07 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-03 23:08:07 +0000
commite6e92a686b35f50455f9a6c1be6e59c110e91b93 (patch)
tree097bd589eca6965b70531e305d1db24fbc5af9da /nuttx/configs/demo9s12ne64/ostest
parent97715862e3afa85cb26afacf60f629fa33eed1f7 (diff)
downloadpx4-nuttx-e6e92a686b35f50455f9a6c1be6e59c110e91b93.tar.gz
px4-nuttx-e6e92a686b35f50455f9a6c1be6e59c110e91b93.tar.bz2
px4-nuttx-e6e92a686b35f50455f9a6c1be6e59c110e91b93.zip
More init logic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2303 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/demo9s12ne64/ostest')
-rwxr-xr-xnuttx/configs/demo9s12ne64/ostest/ld.script11
1 files changed, 4 insertions, 7 deletions
diff --git a/nuttx/configs/demo9s12ne64/ostest/ld.script b/nuttx/configs/demo9s12ne64/ostest/ld.script
index 1b7b628ee..e6fa37686 100755
--- a/nuttx/configs/demo9s12ne64/ostest/ld.script
+++ b/nuttx/configs/demo9s12ne64/ostest/ld.script
@@ -33,17 +33,14 @@
*
****************************************************************************/
-/* The DEMO9S12NE64 has 512Kb of FLASH beginning at address 0x0800:0000 and
- * 64Kb of SRAM beginning at address 0x2000:0000. When booting from FLASH,
- * FLASH memory is aliased to address 0x0000:0000 where the code expects to
- * begin execution by jumping to the entry point in the 0x0800:0000 address
- * range.
+/* The DEMO9S12NE64 has 64Kb of FLASH and 8Kb of SRAM that are assumed to be
+ * positioned as below:
*/
MEMORY
{
- flash (rx) : ORIGIN = 0x08000000, LENGTH = 512K
- sram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K
+ flash (rx) : ORIGIN = 0x0800, LENGTH = 64K
+ sram (rwx) : ORIGIN = 0x3800, LENGTH = 8K
}
OUTPUT_ARCH(m68hc12)