Commit f2fde45afdf01594236bb6062bb279602d84ffcc
1 parent
33a84765
target-ppc: default to a G3 cpu when emulating a G3 PowerMac
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6113 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
hw/ppc_oldworld.c
... | ... | @@ -132,7 +132,7 @@ static void ppc_heathrow_init (ram_addr_t ram_size, int vga_ram_size, |
132 | 132 | |
133 | 133 | /* init CPUs */ |
134 | 134 | if (cpu_model == NULL) |
135 | - cpu_model = "default"; | |
135 | + cpu_model = "G3"; | |
136 | 136 | for (i = 0; i < smp_cpus; i++) { |
137 | 137 | env = cpu_init(cpu_model); |
138 | 138 | if (!env) { | ... | ... |