From 9ad008710507e789e8598686fcd3b9a01050417c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 27 Nov 2000 17:01:47 +0000 Subject: 2000-11-27 Joel Sherrill * startup/linkcmds: Fix typo and add extra 0 to base address. Now runs until printf() tries to put a character and then it locks up checking a status bit that does not change. --- c/src/lib/libbsp/mips/jmr3904/ChangeLog | 6 ++++++ c/src/lib/libbsp/mips/jmr3904/startup/linkcmds | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/c/src/lib/libbsp/mips/jmr3904/ChangeLog b/c/src/lib/libbsp/mips/jmr3904/ChangeLog index efdc194638..ba0eba1974 100644 --- a/c/src/lib/libbsp/mips/jmr3904/ChangeLog +++ b/c/src/lib/libbsp/mips/jmr3904/ChangeLog @@ -1,3 +1,9 @@ +2000-11-27 Joel Sherrill + + * startup/linkcmds: Fix typo and add extra 0 to base address. + Now runs until printf() tries to put a character and then + it locks up checking a status bit that does not change. + 2000-11-25 Joel Sherrill * The JMR BSP is for a Toshiba TX39 evaluation board but diff --git a/c/src/lib/libbsp/mips/jmr3904/startup/linkcmds b/c/src/lib/libbsp/mips/jmr3904/startup/linkcmds index 76943945e5..e6d73d9cea 100644 --- a/c/src/lib/libbsp/mips/jmr3904/startup/linkcmds +++ b/c/src/lib/libbsp/mips/jmr3904/startup/linkcmds @@ -14,7 +14,7 @@ _StackSize = DEFINED(_StackSize) ? _StackSize : 0x1000; SECTIONS { - . = 0x8800000; + . = 0x88000000; .text : { _ftext = . ; -- cgit v1.2.3