mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-27 06:35:04 +00:00
The final two tests were at fault — expecting POPs to write rather than read. Fixed, so the subset of timing tests as-yet implemented now passes. Which means it's time to slog through further tests.
This commit is contained in:
parent
e3244eb68e
commit
002098d496
@ -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),
|
||||
]
|
||||
)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user