From 53cb8234bb7fbdd53f59ff3f2853b6803f6bec41 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 Sep 2008 22:15:59 +0000 Subject: 2008-09-16 Joel Sherrill * Makefile.am, include/bsp.h, startup/init68360.c, startup/linkcmds, startup/linkcmds.bootp, startup/linkcmds.prom: Use top level shared bsp_get_work_area() implementation. --- c/src/lib/libbsp/m68k/gen68360/startup/linkcmds | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'c/src/lib/libbsp/m68k/gen68360/startup/linkcmds') diff --git a/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds b/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds index 7d481d45dc..4dd7d2178a 100644 --- a/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds +++ b/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds @@ -15,9 +15,9 @@ * Declare some sizes. * A heap size of 0 means `use all available memory for the heap'. */ -_RamBase = DEFINED(_RamBase) ? _RamBase : 0x0; -_RamSize = DEFINED(_RamSize) ? _RamSize : 64M; -_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0x0; +RamBase = DEFINED(RamBase) ? RamBase : 0x0; +RamSize = DEFINED(RamSize) ? RamSize : 64M; +HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0; _StackSize = DEFINED(_StackSize) ? _StackSize : 0x1000; /* @@ -44,7 +44,7 @@ SECTIONS { * Dynamic RAM */ ram : { - _RamBase = .; + RamBase = .; } >ram /* @@ -133,7 +133,7 @@ SECTIONS { _stack_init = .; _clear_end = .; - _WorkspaceBase = .; + WorkAreaBase = .; } >ram /* -- cgit v1.2.3