From: Anthony Green Date: Mon, 18 Mar 2002 21:43:15 +0000 (+0000) Subject: Increase default memory size to 8MB. X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=ae60d3ddec01c72072fad73092bc914130123846;p=deliverable%2Fbinutils-gdb.git Increase default memory size to 8MB. --- diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index bf7256c451..04c7e28087 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,7 @@ +2002-03-17 Anthony Green + + * wrapper.c (mem_size): Increase the default target memory to 8MB. + 2002-02-21 Keith Seitz * armos.c (SWIWrite0): Use generic host_callback mechanism diff --git a/sim/arm/wrapper.c b/sim/arm/wrapper.c index e00c21b4ca..773ef354d8 100644 --- a/sim/arm/wrapper.c +++ b/sim/arm/wrapper.c @@ -47,7 +47,7 @@ static SIM_OPEN_KIND sim_kind; static char *myname; /* Memory size in bytes. */ -static int mem_size = (1 << 21); +static int mem_size = (1 << 23); /* Non-zero to display start up banner, and maybe other things. */ static int verbosity;