From 42228ea955eef04ca61c10ccb806950a29a9921d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 17 Oct 2020 22:31:32 -0400 Subject: [PATCH] Adds 65C02As6502 test, to round out the set. --- OSBindings/Mac/Clock SignalTests/KlausDormannTests.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/OSBindings/Mac/Clock SignalTests/KlausDormannTests.swift b/OSBindings/Mac/Clock SignalTests/KlausDormannTests.swift index a4d577473..ebd464b3a 100644 --- a/OSBindings/Mac/Clock SignalTests/KlausDormannTests.swift +++ b/OSBindings/Mac/Clock SignalTests/KlausDormannTests.swift @@ -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)