From c0abdf1b8697e30fc7b35133b544c7249d2aca13 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 22 Mar 2021 19:12:10 -0400 Subject: [PATCH] Factors out the CPC's simple FDC adaptor. --- Machines/AmstradCPC/AmstradCPC.cpp | 35 +------------ Machines/AmstradCPC/FDC.hpp | 51 +++++++++++++++++++ .../Clock Signal.xcodeproj/project.pbxproj | 2 + 3 files changed, 55 insertions(+), 33 deletions(-) create mode 100644 Machines/AmstradCPC/FDC.hpp diff --git a/Machines/AmstradCPC/AmstradCPC.cpp b/Machines/AmstradCPC/AmstradCPC.cpp index a5aac6294..316a5d3f7 100644 --- a/Machines/AmstradCPC/AmstradCPC.cpp +++ b/Machines/AmstradCPC/AmstradCPC.cpp @@ -9,12 +9,12 @@ #include "AmstradCPC.hpp" #include "Keyboard.hpp" +#include "FDC.hpp" #include "../../Processors/Z80/Z80.hpp" #include "../../Components/6845/CRTC6845.hpp" #include "../../Components/8255/i8255.hpp" -#include "../../Components/8272/i8272.hpp" #include "../../Components/AY38910/AY38910.hpp" #include "../Utility/MemoryFuzzer.hpp" @@ -676,37 +676,6 @@ class KeyboardState: public GI::AY38910::PortHandler { }; }; -/*! - Wraps the 8272 so as to provide proper clocking and RPM counts, and just directly - exposes motor control, applying the same value to all drives. -*/ -class FDC: public Intel::i8272::i8272 { - private: - Intel::i8272::BusHandler bus_handler_; - - public: - FDC() : i8272(bus_handler_, Cycles(8000000)) { - emplace_drive(8000000, 300, 1); - set_drive(1); - } - - void set_motor_on(bool on) { - get_drive().set_motor_on(on); - } - - void select_drive(int) { - // TODO: support more than one drive. (and in set_disk) - } - - void set_disk(std::shared_ptr disk, int) { - get_drive().set_disk(disk); - } - - void set_activity_observer(Activity::Observer *observer) { - get_drive().set_activity_observer(observer, "Drive 1", true); - } -}; - /*! Provides the mechanism of receipt for input and output of the 8255's various ports. */ @@ -1249,7 +1218,7 @@ template class ConcreteMachine: i8255PortHandler i8255_port_handler_; Intel::i8255::i8255 i8255_; - FDC fdc_; + Amstrad::FDC fdc_; HalfCycles time_since_fdc_update_; void flush_fdc() { if constexpr (has_fdc) { diff --git a/Machines/AmstradCPC/FDC.hpp b/Machines/AmstradCPC/FDC.hpp new file mode 100644 index 000000000..46042e0f5 --- /dev/null +++ b/Machines/AmstradCPC/FDC.hpp @@ -0,0 +1,51 @@ +// +// FDC.hpp +// Clock Signal +// +// Created by Thomas Harte on 22/03/2021. +// Copyright © 2021 Thomas Harte. All rights reserved. +// + +#ifndef FDC_h +#define FDC_h + +#include "../../Components/8272/i8272.hpp" + +namespace Amstrad { + +/*! + Wraps the 8272 so as to provide proper clocking and RPM counts, and just directly + exposes motor control, applying the same value to all drives. +*/ +class FDC: public Intel::i8272::i8272 { + private: + Intel::i8272::BusHandler bus_handler_; + + public: + FDC(Cycles clock_rate = Cycles(8000000)) : + i8272(bus_handler_, clock_rate) + { + emplace_drive(clock_rate.as(), 300, 1); + set_drive(1); + } + + void set_motor_on(bool on) { + get_drive().set_motor_on(on); + } + + void select_drive(int) { + // TODO: support more than one drive. (and in set_disk) + } + + void set_disk(std::shared_ptr disk, int) { + get_drive().set_disk(disk); + } + + void set_activity_observer(Activity::Observer *observer) { + get_drive().set_activity_observer(observer, "Drive 1", true); + } +}; + +} + +#endif /* FDC_h */ diff --git a/OSBindings/Mac/Clock Signal.xcodeproj/project.pbxproj b/OSBindings/Mac/Clock Signal.xcodeproj/project.pbxproj index ebbf7a82c..afce1bf6c 100644 --- a/OSBindings/Mac/Clock Signal.xcodeproj/project.pbxproj +++ b/OSBindings/Mac/Clock Signal.xcodeproj/project.pbxproj @@ -1075,6 +1075,7 @@ 4B0F1C1B2604EA1000B85C66 /* Keyboard.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Keyboard.cpp; sourceTree = ""; }; 4B0F1C212605996900B85C66 /* ZXSpectrumTAP.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ZXSpectrumTAP.cpp; sourceTree = ""; }; 4B0F1C222605996900B85C66 /* ZXSpectrumTAP.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = ZXSpectrumTAP.hpp; sourceTree = ""; }; + 4B0F1C3D26095AC600B85C66 /* FDC.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FDC.hpp; path = AmstradCPC/FDC.hpp; sourceTree = ""; }; 4B0F94FC208C1A1600FE41D9 /* NIB.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = NIB.cpp; sourceTree = ""; }; 4B0F94FD208C1A1600FE41D9 /* NIB.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = NIB.hpp; sourceTree = ""; }; 4B0F9500208C42A300FE41D9 /* Target.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Target.hpp; path = AppleII/Target.hpp; sourceTree = ""; }; @@ -2504,6 +2505,7 @@ 4B54C0C11F8D91CD0050900F /* Keyboard.cpp */, 4B38F3471F2EC11D00D9235D /* AmstradCPC.hpp */, 4B54C0C01F8D91CD0050900F /* Keyboard.hpp */, + 4B0F1C3D26095AC600B85C66 /* FDC.hpp */, ); name = AmstradCPC; sourceTree = "";