mirror of
https://github.com/qemu/qemu.git
synced 2024-11-25 11:53:39 +08:00
fixed case where ram < 16 MB
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@976 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
a1968d7196
commit
9da9886121
5
hw/pc.c
5
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);
|
||||
|
Loading…
Reference in New Issue
Block a user