1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 23:52:26 +00:00

Tests were at fault; all passing now.

This commit is contained in:
Thomas Harte 2017-06-19 21:14:40 -04:00
parent 99ede3a9ef
commit 234f14dbbe

View File

@ -806,8 +806,6 @@ class Z80MachineCycleTests: XCTestCase {
busCycles: [
MachineCycle(operation: .readOpcode, length: 4),
MachineCycle(operation: .readOpcode, length: 4),
MachineCycle(operation: .read, length: 4),
MachineCycle(operation: .write, length: 3),
]
)
}
@ -858,7 +856,7 @@ class Z80MachineCycleTests: XCTestCase {
busCycles: [
MachineCycle(operation: .readOpcode, length: 4),
MachineCycle(operation: .readOpcode, length: 4),
MachineCycle(operation: .read, length: 4),
MachineCycle(operation: .read, length: 3),
MachineCycle(operation: .readOpcode, length: 5),
MachineCycle(operation: .read, length: 4),
MachineCycle(operation: .write, length: 3),