1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-04 01:57:54 +00:00

Adds 65C02As6502 test, to round out the set.

This commit is contained in:
Thomas Harte 2020-10-17 22:31:32 -04:00
parent e5f57ea743
commit 42228ea955

View File

@ -124,6 +124,11 @@ class KlausDormannTests: XCTestCase {
runTest6502(processor: .processor6502)
}
/// Runs Klaus Dormann's standard 6502 tests on a 65C02.
func test65C02As6502() {
runTest6502(processor: .processor65C02)
}
/// Runs Klaus Dormann's standard 6502 tests on a 65816.
func test65816As6502() {
runTest6502(processor: .processor65816)