From aec4fd066b6b240cde8c43883fcce9872d60f0f2 Mon Sep 17 00:00:00 2001
From: Thomas Harte <thomas.harte@gmail.com>
Date: Thu, 22 Jun 2017 21:32:14 -0400
Subject: [PATCH] I think I've definitively decided against this model of
 timing.

---
 .../xcschemes/Clock Signal.xcscheme           |  2 +-
 Processors/Z80/Z80.hpp                        | 19 -------------------
 2 files changed, 1 insertion(+), 20 deletions(-)

diff --git a/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme b/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme
index 6609a35c0..2cfe830df 100644
--- a/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme	
+++ b/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme	
@@ -68,7 +68,7 @@
       </AdditionalOptions>
    </TestAction>
    <LaunchAction
-      buildConfiguration = "Debug"
+      buildConfiguration = "Release"
       selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
       selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
       launchStyle = "0"
diff --git a/Processors/Z80/Z80.hpp b/Processors/Z80/Z80.hpp
index 5231f67a6..1bd3c7577 100644
--- a/Processors/Z80/Z80.hpp
+++ b/Processors/Z80/Z80.hpp
@@ -1955,25 +1955,6 @@ template <class T> class Processor {
 		bool get_wait_line() {
 			return wait_line_;
 		}
-
-		/*!
-			For receivers of perform_machine_cycle only. Temporarily rejects the current machine
-			cycle, causing time to be rewinded to its beginning.
-
-			Behaviour will be to cause the Z80 to repeat this machine cycle, having adjusted total
-			running time appropriately. This method is intended for use if a subclass receives
-			perform_machine_cycle, indicating that the cycle should be completed, and discovers
-			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() {
-//		}
-
-		/*!
-			Returns the bus cycle that the Z80 is currently in the process of performing.
-		*/
-//		const PartialMachineCycle &get_current_bus_cycle(int &cycles_since_start) {
-//		}
 };
 
 }