From 2f78a1c7afcc4db80a2ecf26a9c7c940832414a7 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 15 Sep 2022 12:17:50 -0400 Subject: [PATCH] Add SCSI controller inclusion logic. --- Analyser/Static/AppleII/StaticAnalyser.cpp | 1 + Analyser/Static/AppleII/Target.hpp | 8 ++++++++ Machines/Apple/AppleII/AppleII.cpp | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Analyser/Static/AppleII/StaticAnalyser.cpp b/Analyser/Static/AppleII/StaticAnalyser.cpp index 5c5933e32..3f379cf47 100644 --- a/Analyser/Static/AppleII/StaticAnalyser.cpp +++ b/Analyser/Static/AppleII/StaticAnalyser.cpp @@ -22,6 +22,7 @@ Analyser::Static::TargetList Analyser::Static::AppleII::GetTargets(const Media & // any mass storage is present. if(!target->media.mass_storage_devices.empty()) { target->model = Target::Model::EnhancedIIe; + target->scsi_controller = Target::SCSIController::AppleSCSI; } TargetList targets; diff --git a/Analyser/Static/AppleII/Target.hpp b/Analyser/Static/AppleII/Target.hpp index 733d7b79a..030b81947 100644 --- a/Analyser/Static/AppleII/Target.hpp +++ b/Analyser/Static/AppleII/Target.hpp @@ -29,16 +29,24 @@ struct Target: public Analyser::Static::Target, public Reflection::StructImpl class ConcreteMachine: } // Add a SCSI card if requested. - const bool has_scsi_card = true; // TODO: obtain via the target. + const bool has_scsi_card = target.scsi_controller == Target::SCSIController::AppleSCSI; if(has_scsi_card) { request = request && SCSICard::rom_request(); }