From d4f0eefd43e8b29a8b8d7c9425a99862eadc73b8 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 19 Dec 2000 18:24:00 +0000 Subject: 2000-12-19 Joel Sherrill * startup/linkcmds: Set _VBR to 0 to indicate that the vectors are in RAM not ROM. Thanks to Juan Zamorano for debugging this. --- c/src/lib/libbsp/m68k/sim68000/ChangeLog | 6 ++++++ c/src/lib/libbsp/m68k/sim68000/startup/linkcmds | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'c/src/lib/libbsp/m68k') diff --git a/c/src/lib/libbsp/m68k/sim68000/ChangeLog b/c/src/lib/libbsp/m68k/sim68000/ChangeLog index 6c1ad336d9..40ce241b55 100644 --- a/c/src/lib/libbsp/m68k/sim68000/ChangeLog +++ b/c/src/lib/libbsp/m68k/sim68000/ChangeLog @@ -1,3 +1,9 @@ +2000-12-19 Joel Sherrill + + * startup/linkcmds: Set _VBR to 0 to indicate that the vectors are + in RAM not ROM. Thanks to Juan Zamorano for + debugging this. + 2000-11-27 Joel Sherrill * start/start.S, startup/bspstart.c: Not functional for CPU32 diff --git a/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds b/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds index 262e38f238..336e8ff185 100644 --- a/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds +++ b/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds @@ -165,5 +165,6 @@ SECTIONS /* These must appear regardless of . */ } -_VBR = 0xFFFFFFFF; /* indicates VBR table is in ROM */ +/* _VBR = 0xFFFFFFFF; * indicates VBR table is in ROM */ +_VBR = 0x0; /* indicates VBR table is in RAM */ -- cgit v1.2.3