From b0d33a5385873ef2788fe90e743d41c471da0a70 Mon Sep 17 00:00:00 2001 From: joevt Date: Mon, 18 Sep 2023 16:30:01 -0700 Subject: [PATCH] Add pmg3twr machine description. --- machines/machinegossamer.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/machines/machinegossamer.cpp b/machines/machinegossamer.cpp index 32fb268..fea0f6c 100644 --- a/machines/machinegossamer.cpp +++ b/machines/machinegossamer.cpp @@ -170,6 +170,10 @@ static vector pmg3_devices = { "Grackle", "ScreamerSnd", "Heathrow", "AtiRageGT", "AtaHardDisk", "AtapiCdrom" }; +static vector pmg3twr_devices = { + "Grackle", "ScreamerSnd", "Heathrow", "AtiRagePro", "AtaHardDisk", "AtapiCdrom" +}; + static const MachineDescription pmg3dt_descriptor = { .name = "pmg3dt", .description = "Power Macintosh G3 (Beige) Desktop", @@ -178,4 +182,13 @@ static const MachineDescription pmg3dt_descriptor = { .init_func = &initialize_gossamer }; +static const MachineDescription pmg3twr_descriptor = { + .name = "pmg3twr", + .description = "Power Macintosh G3 (Beige) Tower", + .devices = pmg3twr_devices, + .settings = gossamer_settings, + .init_func = &initialize_gossamer +}; + REGISTER_MACHINE(pmg3dt, pmg3dt_descriptor); +REGISTER_MACHINE(pmg3twr, pmg3twr_descriptor);