1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-11 08:30:55 +00:00

Whoops, one bit too short.

This commit is contained in:
Thomas Harte 2016-07-09 17:51:46 -04:00
parent cd362b46b3
commit cd84c35552

View File

@ -32,7 +32,7 @@ class C1540Tests: XCTestCase {
c1540.runForCycles(256) // this isn't time limited on real hardware
XCTAssert(c1540.dataLine == true, "Listener should have let data line go high again")
for _ in 1..<8 {
for _ in 0..<8 {
// ensure the closk is true again
c1540.clockLine = true
c1540.runForCycles(40)