diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-08 12:50:56 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-08 12:50:56 +0000 |
commit | 3a616592a18931f814c00f773194ef5819919895 (patch) | |
tree | 5865ff560647f4d2cb391f2786b440cb2a4f1602 /hw | |
parent | b98a003c196bab74c881440a42d349b98625e134 (diff) |
Load 32 bit ELF BIOS images also on PPC64
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6554 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/ppc_newworld.c | 7 | ||||
-rw-r--r-- | hw/ppc_oldworld.c | 7 |
2 files changed, 0 insertions, 14 deletions
diff --git a/hw/ppc_newworld.c b/hw/ppc_newworld.c index 1379847219..022f761c4e 100644 --- a/hw/ppc_newworld.c +++ b/hw/ppc_newworld.c @@ -125,13 +125,6 @@ static void ppc_core99_init (ram_addr_t ram_size, int vga_ram_size, qemu_register_reset(&cpu_ppc_reset, env); envs[i] = env; } - if (env->nip < 0xFFF80000) { - /* Special test for PowerPC 601: - * the boot vector is at 0xFFF00100, then we need a 1MB BIOS. - * But the NVRAM is located at 0xFFF04000... - */ - cpu_abort(env, "Mac99 hardware can not handle 1 MB BIOS\n"); - } /* allocate RAM */ ram_offset = qemu_ram_alloc(ram_size); diff --git a/hw/ppc_oldworld.c b/hw/ppc_oldworld.c index a6dfc3529e..3589812104 100644 --- a/hw/ppc_oldworld.c +++ b/hw/ppc_oldworld.c @@ -152,13 +152,6 @@ static void ppc_heathrow_init (ram_addr_t ram_size, int vga_ram_size, qemu_register_reset(&cpu_ppc_reset, env); envs[i] = env; } - if (env->nip < 0xFFF80000) { - /* Special test for PowerPC 601: - * the boot vector is at 0xFFF00100, then we need a 1MB BIOS. - * But the NVRAM is located at 0xFFF04000... - */ - cpu_abort(env, "G3 Beige Mac hardware can not handle 1 MB BIOS\n"); - } /* allocate RAM */ if (ram_size > (2047 << 20)) { |