From 5e2dce08b0fe548f3b06b7f8eeba3f3d15fd4918 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 27 Nov 2001 23:38:03 +0000 Subject: 2001-11-27 Joel Sherrill , This was tracked as PR39. * include/bsp.h, start/cpuboot.c, start/reset.S, startup/debugger, startup/linkcmds, startup/rom: Eliminated required definition of macros in the custom file for the BSP to compile. The ROM and ROM address and size settings are now linker script items. --- c/src/lib/libbsp/m68k/ods68302/startup/rom | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'c/src/lib/libbsp/m68k/ods68302/startup/rom') diff --git a/c/src/lib/libbsp/m68k/ods68302/startup/rom b/c/src/lib/libbsp/m68k/ods68302/startup/rom index a8533e08b0..e74a2a0bd6 100644 --- a/c/src/lib/libbsp/m68k/ods68302/startup/rom +++ b/c/src/lib/libbsp/m68k/ods68302/startup/rom @@ -50,6 +50,11 @@ SECTIONS } } +RAM_BASE = DEFINED(RAM_BASE) ? RAM_BASE : 0x00000000; +RAM_SIZE = DEFINED(RAM_SIZE) ? RAM_SIZE : 0x00100000; +ROM_BASE = DEFINED(ROM_BASE) ? ROM_BASE : 0x00C00000; +ROM_SIZE = DEFINED(ROM_SIZE) ? ROM_SIZE : 0x00100000; +MC68302_BASE = DEFINED(MC68302_BASE) ? MC68302_BASE : 0x00700000; m302 = MC68302_BASE; _VBR = 0; /* location of the VBR table (in RAM) */ -- cgit v1.2.3