diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-20 23:39:46 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-20 23:39:46 +0000 |
commit | f2fde45afdf01594236bb6062bb279602d84ffcc (patch) | |
tree | 961cab9ceb05d57f831efabd20e90e4c2fcb5473 /hw | |
parent | 33a84765e34421dc4e009dea8176ac17474aff97 (diff) |
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
Diffstat (limited to 'hw')
-rw-r--r-- | hw/ppc_oldworld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc_oldworld.c b/hw/ppc_oldworld.c index 02655962fd..5a6ecc5304 100644 --- a/hw/ppc_oldworld.c +++ b/hw/ppc_oldworld.c @@ -132,7 +132,7 @@ static void ppc_heathrow_init (ram_addr_t ram_size, int vga_ram_size, /* init CPUs */ if (cpu_model == NULL) - cpu_model = "default"; + cpu_model = "G3"; for (i = 0; i < smp_cpus; i++) { env = cpu_init(cpu_model); if (!env) { |