diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-24 17:59:27 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-24 17:59:27 +0000 |
commit | 7fb4fdcffeb199c1a742c45ac2413be8a9a33354 (patch) | |
tree | 39c795fed9ae5e8d59afde1ca6031702cdd3224e /hw/stellaris.c | |
parent | c73f96fddc0f5ec7c708290f159b04cfa09ef713 (diff) |
RAM usage information in machine definition.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4246 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/stellaris.c')
-rw-r--r-- | hw/stellaris.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/stellaris.c b/hw/stellaris.c index 68f7137b13..1b0267c15e 100644 --- a/hw/stellaris.c +++ b/hw/stellaris.c @@ -1189,10 +1189,12 @@ QEMUMachine lm3s811evb_machine = { "lm3s811evb", "Stellaris LM3S811EVB", lm3s811evb_init, + (64 * 1024 * 1024 + 8 * 1024 * 1024) | RAMSIZE_FIXED, }; QEMUMachine lm3s6965evb_machine = { "lm3s6965evb", "Stellaris LM3S6965EVB", lm3s6965evb_init, + (256 * 1024 * 1024 + 64 * 1024 * 1024) | RAMSIZE_FIXED, }; |