From 002098d4964e4473bfc9a2037f109c069edcbb9d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 19 Jun 2017 07:45:41 -0400 Subject: [PATCH] =?UTF-8?q?The=20final=20two=20tests=20were=20at=20fault?= =?UTF-8?q?=20=E2=80=94=20expecting=20POPs=20to=20write=20rather=20than=20?= =?UTF-8?q?read.=20Fixed,=20so=20the=20subset=20of=20timing=20tests=20as-y?= =?UTF-8?q?et=20implemented=20now=20passes.=20Which=20means=20it's=20time?= =?UTF-8?q?=20to=20slog=20through=20further=20tests.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Mac/Clock SignalTests/Z80MachineCycleTests.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/Z80MachineCycleTests.swift b/OSBindings/Mac/Clock SignalTests/Z80MachineCycleTests.swift index be76ae49b..d07d85873 100644 --- a/OSBindings/Mac/Clock SignalTests/Z80MachineCycleTests.swift +++ b/OSBindings/Mac/Clock SignalTests/Z80MachineCycleTests.swift @@ -391,8 +391,8 @@ class Z80MachineCycleTests: XCTestCase { program: [0xe1], busCycles: [ MachineCycle(operation: .readOpcode, length: 4), - MachineCycle(operation: .write, length: 3), - MachineCycle(operation: .write, length: 3), + MachineCycle(operation: .read, length: 3), + MachineCycle(operation: .read, length: 3), ] ) } @@ -404,8 +404,8 @@ class Z80MachineCycleTests: XCTestCase { busCycles: [ MachineCycle(operation: .readOpcode, length: 4), MachineCycle(operation: .readOpcode, length: 4), - MachineCycle(operation: .write, length: 3), - MachineCycle(operation: .write, length: 3), + MachineCycle(operation: .read, length: 3), + MachineCycle(operation: .read, length: 3), ] ) }