From 51e6ffb24fa71128ac53b4f0653cac66c5e0ed98 Mon Sep 17 00:00:00 2001 From: Maxim Poliakovski Date: Tue, 17 May 2022 13:27:58 +0200 Subject: [PATCH] GrandCentral: properly connect Curio SCSI. --- devices/ioctrl/grandcentral.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/devices/ioctrl/grandcentral.cpp b/devices/ioctrl/grandcentral.cpp index b8782ad..ddb830a 100644 --- a/devices/ioctrl/grandcentral.cpp +++ b/devices/ioctrl/grandcentral.cpp @@ -66,6 +66,7 @@ GrandCentral::GrandCentral() : PCIDevice("mac-io/grandcentral"), InterruptCtrl() this->escc = std::unique_ptr (new EsccController()); this->scsi_0 = std::unique_ptr (new Sc53C94()); + gMachineObj->add_subdevice("Curio_SCSI0", this->scsi_0.get()); } void GrandCentral::notify_bar_change(int bar_num)