1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-29 16:29:08 +00:00

Update 6502TimingTests.swift

This commit is contained in:
C.W. Betts 2020-09-26 16:13:27 -06:00 committed by GitHub
parent 669d8e64ab
commit ce0536cdfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -200,7 +200,7 @@ class MOS6502TimingTests: XCTestCase, CSTestMachineTrapHandler {
func runTest(_ code: [UInt8], expectedRunLength: UInt32) { func runTest(_ code: [UInt8], expectedRunLength: UInt32) {
machine.trapHandler = self machine.trapHandler = self
let immediateCode = Data(bytes: UnsafePointer<UInt8>(code), count: code.count) let immediateCode = Data(code)
machine.setData(immediateCode, atAddress: 0x200) machine.setData(immediateCode, atAddress: 0x200)
machine.addTrapAddress(UInt16(0x200 + code.count)) machine.addTrapAddress(UInt16(0x200 + code.count))
machine.setValue(0x00, forAddress: 0x0000) machine.setValue(0x00, forAddress: 0x0000)