mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-08-09 18:25:33 +00:00
Remap any newer G4/G5 processor to plain G4 for compatibility
This commit is contained in:
@@ -700,6 +700,15 @@ int main(int argc, char **argv)
|
|||||||
closedir(cpus_dir);
|
closedir(cpus_dir);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
// Remap any newer G4/G5 processor to plain G4 for compatibility
|
||||||
|
switch (PVR >> 16) {
|
||||||
|
case 0x8000: // 7450
|
||||||
|
case 0x8001: // 7455
|
||||||
|
case 0x8002: // 7457
|
||||||
|
case 0x0039: // 970
|
||||||
|
PVR = 0x000c0000; // 7400
|
||||||
|
break;
|
||||||
|
}
|
||||||
D(bug("PVR: %08x (assumed)\n", PVR));
|
D(bug("PVR: %08x (assumed)\n", PVR));
|
||||||
|
|
||||||
// Init system routines
|
// Init system routines
|
||||||
|
Reference in New Issue
Block a user