diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-24 18:34:18 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-24 18:34:18 +0000 |
commit | e61b79d644e2804e7c7bdb0a2a8b3e14e2ab40e1 (patch) | |
tree | 7db69d747cbe6710fa55dc6680b9d43f3432fd71 /hw/stellaris.c | |
parent | 7fb4fdcffeb199c1a742c45ac2413be8a9a33354 (diff) |
Stellaris boards really aren't that big!
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4247 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/stellaris.c')
-rw-r--r-- | hw/stellaris.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/stellaris.c b/hw/stellaris.c index 1b0267c15e..abd34165a8 100644 --- a/hw/stellaris.c +++ b/hw/stellaris.c @@ -1189,12 +1189,12 @@ QEMUMachine lm3s811evb_machine = { "lm3s811evb", "Stellaris LM3S811EVB", lm3s811evb_init, - (64 * 1024 * 1024 + 8 * 1024 * 1024) | RAMSIZE_FIXED, + (64 * 1024 + 8 * 1024) | RAMSIZE_FIXED, }; QEMUMachine lm3s6965evb_machine = { "lm3s6965evb", "Stellaris LM3S6965EVB", lm3s6965evb_init, - (256 * 1024 * 1024 + 64 * 1024 * 1024) | RAMSIZE_FIXED, + (256 * 1024 + 64 * 1024) | RAMSIZE_FIXED, }; |