fixed case where ram < 16 MB
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 26 Jun 2004 15:53:17 +0000 (15:53 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 26 Jun 2004 15:53:17 +0000 (15:53 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@976 c046a42c-6fe2-441c-8c8c-71466251a162

hw/pc.c

diff --git a/hw/pc.c b/hw/pc.c
index f578325..11b2827 100644 (file)
--- a/hw/pc.c
+++ b/hw/pc.c
@@ -136,7 +136,10 @@ static void cmos_init(int ram_size, int boot_device)
     rtc_set_memory(s, 0x30, val);
     rtc_set_memory(s, 0x31, val >> 8);
 
-    val = (ram_size / 65536) - ((16 * 1024 * 1024) / 65536);
+    if (ram_size > (16 * 1024 * 1024))
+        val = (ram_size / 65536) - ((16 * 1024 * 1024) / 65536);
+    else
+        val = 0;
     if (val > 65535)
         val = 65535;
     rtc_set_memory(s, 0x34, val);