diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-30 02:24:42 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-30 02:24:42 +0000 |
commit | 9d55199763d4067158d6c556e78312f7d007d914 (patch) | |
tree | e1ee7532b8bb77430321354484852fa6ea403eae /hw/integratorcp.c | |
parent | b00052e496395a9cd38b7efb558aa78855a1e179 (diff) |
Account for machine with RAM which is not mapped at 0x0 in arm_boot.c.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2757 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/integratorcp.c')
-rw-r--r-- | hw/integratorcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/integratorcp.c b/hw/integratorcp.c index 34c3b8112e..c9e1715f37 100644 --- a/hw/integratorcp.c +++ b/hw/integratorcp.c @@ -508,7 +508,7 @@ static void integratorcp_init(int ram_size, int vga_ram_size, int boot_device, pl110_init(ds, 0xc0000000, pic[22], 0); arm_load_kernel(env, ram_size, kernel_filename, kernel_cmdline, - initrd_filename, 0x113); + initrd_filename, 0x113, 0x0); } QEMUMachine integratorcp_machine = { |