diff options
Diffstat (limited to 'hw/mips_pica61.c')
-rw-r--r-- | hw/mips_pica61.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/mips_pica61.c b/hw/mips_pica61.c index 8e1058a791..3f2a937e8c 100644 --- a/hw/mips_pica61.c +++ b/hw/mips_pica61.c @@ -73,7 +73,8 @@ void mips_pica61_init (int ram_size, int vga_ram_size, int boot_device, #ifdef TARGET_MIPS64 cpu_model = "R4000"; #else - cpu_model = "4KEc"; + /* FIXME: All wrong, this maybe should be R3000 for the older PICAs. */ + cpu_model = "24Kf"; #endif } if (mips_find_by_name(cpu_model, &def) != 0) |