From 77da582e88cef3c0d095f96dbb1f2392e497d226 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 6 Aug 2017 12:35:20 -0400 Subject: [PATCH] Switched the container in which events are passed to `int`, with the intention of subclasses extending the receivable range. --- Storage/Disk/MFMDiskController.cpp | 8 ++++---- Storage/Disk/MFMDiskController.hpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Storage/Disk/MFMDiskController.cpp b/Storage/Disk/MFMDiskController.cpp index 91909d24d..13a61263c 100644 --- a/Storage/Disk/MFMDiskController.cpp +++ b/Storage/Disk/MFMDiskController.cpp @@ -20,11 +20,11 @@ MFMController::MFMController(Cycles clock_rate, int clock_rate_multiplier, int r } void MFMController::process_index_hole() { - posit_event(Event::IndexHole); + posit_event((int)Event::IndexHole); } void MFMController::process_write_completed() { - posit_event(Event::DataWritten); + posit_event((int)Event::DataWritten); } void MFMController::set_is_double_density(bool is_double_density) { @@ -107,7 +107,7 @@ void MFMController::process_input_bit(int value, unsigned int cycles_since_index if(token_type != Token::Byte) { latest_token_.type = token_type; bits_since_token_ = 0; - posit_event(Event::Token); + posit_event((int)Event::Token); return; } } @@ -145,7 +145,7 @@ void MFMController::process_input_bit(int value, unsigned int cycles_since_index } crc_generator_.add(latest_token_.byte_value); - posit_event(Event::Token); + posit_event((int)Event::Token); return; } } diff --git a/Storage/Disk/MFMDiskController.hpp b/Storage/Disk/MFMDiskController.hpp index 3344ef31e..a82233bfb 100644 --- a/Storage/Disk/MFMDiskController.hpp +++ b/Storage/Disk/MFMDiskController.hpp @@ -85,7 +85,7 @@ class MFMController: public Controller { (ii) the index hole passes; or (iii) the queue of data to be written has been exhausted. */ - virtual void posit_event(Event type) = 0; + virtual void posit_event(int type) = 0; private: // Storage::Disk::Controller