From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 9DD26385ED4D; Fri, 7 Aug 2020 13:16:59 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9DD26385ED4D Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] MSP430: Increase the amount of main memory available in sim ld scripts X-Act-Checkin: newlib-cygwin X-Git-Author: Jozef Lawrynowicz X-Git-Refname: refs/heads/master X-Git-Oldrev: 748970c8337eb286d816ac623c8ee097d4085c29 X-Git-Newrev: e3f29b247250f95600c93934182a00d8ae81dacf Message-Id: <20200807131659.9DD26385ED4D@sourceware.org> Date: Fri, 7 Aug 2020 13:16:59 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Aug 2020 13:16:59 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=e3f29b247250f95600c93934182a00d8ae81dacf commit e3f29b247250f95600c93934182a00d8ae81dacf Author: Jozef Lawrynowicz Date: Fri Aug 7 11:49:54 2020 +0100 MSP430: Increase the amount of main memory available in sim ld scripts The main memory region of the GDB simulator ends at address 0xFFBF, but the simulator linker scripts do not make full use of this available memory. >From 61f3d212741acee583e21ff2c2808775584ecad6 Mon Sep 17 00:00:00 2001 From: Jozef Lawrynowicz Date: Mon, 3 Aug 2020 19:38:23 +0100 Subject: [PATCH 2/2] MSP430: Increase the amount of main memory available in sim ld scripts The main memory region of the GDB simulator ends at address 0xFFBF, but the simulator linker scripts do not make full use of this available memory. Diff: --- libgloss/msp430/msp430-sim.ld | 2 +- libgloss/msp430/msp430xl-sim.ld | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libgloss/msp430/msp430-sim.ld b/libgloss/msp430/msp430-sim.ld index 5c0e3b7a7..4af48398e 100644 --- a/libgloss/msp430/msp430-sim.ld +++ b/libgloss/msp430/msp430-sim.ld @@ -19,7 +19,7 @@ INCLUDE intr_vectors.ld MEMORY { - RAM (w) : ORIGIN = 0x00500, LENGTH = 0x0eb00 + RAM (w) : ORIGIN = 0x00500, LENGTH = 0x0fac0 /* END=0xffbf */ } SECTIONS diff --git a/libgloss/msp430/msp430xl-sim.ld b/libgloss/msp430/msp430xl-sim.ld index 5126e398a..8d03b5c38 100644 --- a/libgloss/msp430/msp430xl-sim.ld +++ b/libgloss/msp430/msp430xl-sim.ld @@ -26,7 +26,7 @@ INCLUDE intr_vectors.ld MEMORY { RAM (rw) : ORIGIN = 0x00500, LENGTH = 0x01b00 - ROM (rx) : ORIGIN = 0x02000, LENGTH = 0x0df00 + ROM (rx) : ORIGIN = 0x02000, LENGTH = 0x0dfc0 /* The regions from intr_vectors.ld go here. */ HIFRAM (rw) : ORIGIN = 0x10000, LENGTH = 0x80000 HIROM (rx) : ORIGIN = 0x90000, LENGTH = 0x70000