summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2002-03-18 21:43:15 +0000
committerAnthony Green <green@redhat.com>2002-03-18 21:43:15 +0000
commitb05824b4e4692468db270a63834f990082246b26 (patch)
tree615405eb97a1d88954e73ac603ea53f9ec70d98a
parent53577f0f32b50e2d9f08808910b8281c31f3ece1 (diff)
downloadgdb-b05824b4e4692468db270a63834f990082246b26.tar.gz
Increase default memory size to 8MB.
-rw-r--r--sim/arm/ChangeLog4
-rw-r--r--sim/arm/wrapper.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog
index bf7256c4516..04c7e280871 100644
--- a/sim/arm/ChangeLog
+++ b/sim/arm/ChangeLog
@@ -1,3 +1,7 @@
+2002-03-17 Anthony Green <green@redhat.com>
+
+ * wrapper.c (mem_size): Increase the default target memory to 8MB.
+
2002-02-21 Keith Seitz <keiths@redhat.com>
* armos.c (SWIWrite0): Use generic host_callback mechanism
diff --git a/sim/arm/wrapper.c b/sim/arm/wrapper.c
index e00c21b4ca3..773ef354d86 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;