mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
42 lines
1.3 KiB
Swift
42 lines
1.3 KiB
Swift
|
//
|
||
|
// Jeek816Tests.swift
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 12/10/2020.
|
||
|
// Copyright 2020 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import XCTest
|
||
|
import Foundation
|
||
|
|
||
|
class Jeek816Tests: XCTestCase {
|
||
|
func testJeek816() {
|
||
|
var machine: CSTestMachine6502!
|
||
|
|
||
|
if let filename = Bundle(for: type(of: self)).path(forResource: "suite-a.prg", ofType: nil) {
|
||
|
if let testData = try? Data(contentsOf: URL(fileURLWithPath: filename)) {
|
||
|
machine = CSTestMachine6502(processor: .processor65816)
|
||
|
|
||
|
let contents = testData.subdata(in: 0xe ..< testData.count)
|
||
|
machine.setData(contents, atAddress: 0x080d)
|
||
|
|
||
|
machine.setValue(0x080d, for: .programCounter)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if machine == nil {
|
||
|
NSException(name: NSExceptionName(rawValue: "Failed Test"), reason: "Couldn't load file \(name)", userInfo: nil).raise()
|
||
|
}
|
||
|
|
||
|
while machine.value(for: .lastOperationAddress) != 0x0874 {
|
||
|
machine.runForNumber(ofCycles: 1000)
|
||
|
}
|
||
|
|
||
|
// The test leaves $ff in $d7ff to indicate failure; $0000 to indicate success.
|
||
|
// If the tests failed, it'll leave a bitmap of failures in address $0401.
|
||
|
if machine.value(forAddress: 0xd7ff) != 0 {
|
||
|
NSException(name: NSExceptionName(rawValue: "Failed Test"), reason: "Failed tests with bitmap: \(String(format:"%02x", machine.value(forAddress: 0x401)))", userInfo: nil).raise()
|
||
|
}
|
||
|
}
|
||
|
}
|