From ad8a2e2cb9a0013c964ad70ea8474de4a70f6a72 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 27 Sep 2020 22:19:42 -0400 Subject: [PATCH] Corrects a long-standing naming obscurity. --- Processors/6502/6502.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Processors/6502/6502.hpp b/Processors/6502/6502.hpp index d91b5a010..d540ec223 100644 --- a/Processors/6502/6502.hpp +++ b/Processors/6502/6502.hpp @@ -205,12 +205,12 @@ class ProcessorBase: public ProcessorStorage { can also nominate whether the processor includes support for the ready line. Declining to support the ready line can produce a minor runtime performance improvement. */ -template class Processor: public ProcessorBase { +template class Processor: public ProcessorBase { public: /*! Constructs an instance of the 6502 that will use @c bus_handler for all bus communications. */ - Processor(T &bus_handler) : ProcessorBase(personality), bus_handler_(bus_handler) {} + Processor(BusHandler &bus_handler) : ProcessorBase(personality), bus_handler_(bus_handler) {} /*! Runs the 6502 for a supplied number of cycles. @@ -227,7 +227,7 @@ template class Proce void set_ready_line(bool active); private: - T &bus_handler_; + BusHandler &bus_handler_; }; #include "Implementation/6502Implementation.hpp"