From f891b23e32cdfddab1aee5b778f5af966a4d7e06 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Sun, 30 Jan 2005 21:13:23 +0000 Subject: [PATCH] add PowerPC,G4 node --- SheepShaver/src/name_registry.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/SheepShaver/src/name_registry.cpp b/SheepShaver/src/name_registry.cpp index 414a0f0a..598a221c 100644 --- a/SheepShaver/src/name_registry.cpp +++ b/SheepShaver/src/name_registry.cpp @@ -131,6 +131,13 @@ void DoPatchNameRegistry(void) case 80: // 860 str = "PowerPC,860"; break; + case 12: // 7400, 7410, 7450, 7455, 7457 + case 0x800c: + case 0x8000: + case 0x8001: + case 0x8002: + str = "PowerPC,G4"; + break; default: str = "PowerPC,???"; break;