diff options
author | pbrook | 2008-04-24 20:34:18 +0200 |
---|---|---|
committer | pbrook | 2008-04-24 20:34:18 +0200 |
commit | e61b79d644e2804e7c7bdb0a2a8b3e14e2ab40e1 (patch) | |
tree | 7db69d747cbe6710fa55dc6680b9d43f3432fd71 /hw/stellaris.c | |
parent | RAM usage information in machine definition. (diff) | |
download | qemu-e61b79d644e2804e7c7bdb0a2a8b3e14e2ab40e1.tar.gz qemu-e61b79d644e2804e7c7bdb0a2a8b3e14e2ab40e1.tar.xz qemu-e61b79d644e2804e7c7bdb0a2a8b3e14e2ab40e1.zip |
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, }; |