summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-16 22:16:25 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-16 22:16:25 +0000
commit07ce99e933afa42e93a55a34e732d6db9ef8c90c (patch)
tree488977eabdfe1291265b58f7c2e6b41e98383815 /c/src/lib/libbsp/m68k/sim68000/startup/linkcmds
parent2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-07ce99e933afa42e93a55a34e732d6db9ef8c90c.tar.bz2
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, startup/linkcmds: Use top level shared bsp_get_work_area() implementation.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/startup/linkcmds8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds b/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds
index 92a2e6ec74..b89980a8cf 100644
--- a/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds
+++ b/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds
@@ -10,9 +10,9 @@
*/
_RomBase = DEFINED(_RomBase) ? _RomBase : 0x0;
_RomSize = DEFINED(_RomSize) ? _RomSize : 512K;
-_RamBase = DEFINED(_RamBase) ? _RamBase : 0x80000;
-_RamSize = DEFINED(_RamSize) ? _RamSize : 128K;
-_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0;
+RamBase = DEFINED(RamBase) ? RamBase : 0x80000;
+RamSize = DEFINED(RamSize) ? RamSize : 128K;
+HeapSize = DEFINED(HeapSize) ? HeapSize : 0;
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x1000;
/*
@@ -133,7 +133,7 @@ SECTIONS
_stack_init = .;
_clear_end = .;
- _WorkspaceBase = .;
+ WorkAreaBase = .;
}
/* Stabs debugging sections. */