From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18298 invoked by alias); 23 Oct 2003 01:09:55 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 18280 invoked from network); 23 Oct 2003 01:09:54 -0000 Received: from unknown (HELO mail04.idc.renesas.com) (202.234.163.13) by sources.redhat.com with SMTP; 23 Oct 2003 01:09:54 -0000 Received: from mail04.idc.renesas.com ([127.0.0.1]) by mail04.idc.renesas.com with ESMTP id h9N19qc4026350 for ; Thu, 23 Oct 2003 10:09:52 +0900 (JST) Received: from guardian04.idc.renesas.com ([172.20.8.135]) by mail04.idc.renesas.com with ESMTP id h9N19lrd026337 for ; Thu, 23 Oct 2003 10:09:47 +0900 (JST) Received: (from root@localhost) by guardian04.idc.renesas.com with id h9N19lDw009381 for gdb-patches@sources.redhat.com; Thu, 23 Oct 2003 10:09:47 +0900 (JST) Received: from unknown [172.20.8.71] by guardian04.idc.renesas.com with SMTP id LAA09380 ; Thu, 23 Oct 2003 10:09:47 +0900 Received: from mta04.idc.renesas.com (localhost [127.0.0.1]) by mta04.idc.renesas.com with ESMTP id h9N19kYt022363 for ; Thu, 23 Oct 2003 10:09:46 +0900 (JST) Received: from rnsmtp01.hoku_r.renesas.com ([10.145.246.51]) by mta04.idc.renesas.com with ESMTP id h9N19jH4022358 for ; Thu, 23 Oct 2003 10:09:45 +0900 (JST) Received: from mrkaisv.hoku.renesas.com ([10.145.105.245]) by rnsmtp01.hoku_r.renesas.com (8.9.3/3.7W) with ESMTP id KAA22262 for ; Thu, 23 Oct 2003 10:09:45 +0900 (JST) Received: from KEI (unknown [10.145.105.81]) by mrkaisv.hoku.renesas.com (Postfix) with SMTP id 98E77798299 for ; Thu, 23 Oct 2003 10:09:44 +0900 (JST) Message-ID: <00cd01c39902$8e2c7b50$5169910a@KEI> From: "Kei Sakamoto" To: Subject: [RFA] sim/m32r: increase the default memory region Date: Thu, 23 Oct 2003 01:09:00 -0000 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_00CA_01C3994D.FDF26A80" X-Priority: 3 X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-SW-Source: 2003-10/txt/msg00672.txt.bz2 This is a multi-part message in MIME format. ------=_NextPart_000_00CA_01C3994D.FDF26A80 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit Content-length: 427 Hello, M32R simulator does not accept memory accesses whose addresses are larger than 0x800000 (8MB) by default. But these days many embedded applications require more memory space. The attached patch increases the default memory region to 32MB. OK to commit? Kei Sakamoto Renesas Technology Corp. === 2003-10-23 Kei Sakamoto * gdb.texinfo : increases the default memory space to 32MB. ------=_NextPart_000_00CA_01C3994D.FDF26A80 Content-Type: application/octet-stream; name="diffs" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="diffs" Content-length: 684 Index: sim-main.h=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /cvs/src/src/sim/m32r/sim-main.h,v=0A= retrieving revision 1.1.1.2=0A= diff -u -r1.1.1.2 sim-main.h=0A= --- sim-main.h 12 Oct 1999 04:37:53 -0000 1.1.1.2=0A= +++ sim-main.h 23 Oct 2003 00:47:01 -0000=0A= @@ -83,6 +83,6 @@=0A= (TRANSFER), (ERROR))=0A= =20=0A= /* Default memory size. */=0A= -#define M32R_DEFAULT_MEM_SIZE 0x800000 /* 8M */=0A= +#define M32R_DEFAULT_MEM_SIZE 0x2000000 /* 32M */=0A= =20=0A= #endif /* SIM_MAIN_H */=0A= ------=_NextPart_000_00CA_01C3994D.FDF26A80--