From 24c84ca6f502cb09e17c59aff15dd045a474db4a Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 3 Jun 2017 19:10:23 -0400 Subject: [PATCH] Commented out as-yet-unimplemented features. --- Processors/Z80/Z80.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Processors/Z80/Z80.hpp b/Processors/Z80/Z80.hpp index 29970b145..78c72af59 100644 --- a/Processors/Z80/Z80.hpp +++ b/Processors/Z80/Z80.hpp @@ -1752,14 +1752,14 @@ template class Processor: public MicroOpScheduler { that it should have signalled IRQ, NMI or BUSREQ during the cycle. In that case it can rewind time and post the signal with a proper time offset. */ - void reject_machine_cycle() { - } +// void reject_machine_cycle() { +// } /*! Returns the bus cycle that the Z80 is currently in the process of performing. */ - const MachineCycle &get_current_bus_cycle(int &cycles_since_start) { - } +// const MachineCycle &get_current_bus_cycle(int &cycles_since_start) { +// } }; }