mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-14 23:27:26 +00:00
Attempts LDA tests against the 65816.
Result: ix is faulty. Which we already knew.
This commit is contained in:
@@ -11,12 +11,16 @@ import Foundation
|
|||||||
|
|
||||||
class WolfgangLorenzTests: XCTestCase, CSTestMachineTrapHandler {
|
class WolfgangLorenzTests: XCTestCase, CSTestMachineTrapHandler {
|
||||||
|
|
||||||
func testWolfgangLorenzStart() {
|
|
||||||
self.runWolfgangLorenzTest(" start", processor: .processor6502)
|
|
||||||
}
|
|
||||||
func testWolfgangLorenzStart65816() {
|
func testWolfgangLorenzStart65816() {
|
||||||
self.runWolfgangLorenzTest(" start", processor: .processor65816)
|
self.runWolfgangLorenzTest(" start", processor: .processor65816)
|
||||||
}
|
}
|
||||||
|
func testWolfgangLorenzLDA65816() {
|
||||||
|
self.runWolfgangLorenzTest("lda", suffixes: ["b", "z", "zx", "a", "ax", "ay", "ix", "iy"], processor: .processor65816)
|
||||||
|
}
|
||||||
|
|
||||||
|
func testWolfgangLorenzStart() {
|
||||||
|
self.runWolfgangLorenzTest(" start", processor: .processor6502)
|
||||||
|
}
|
||||||
func testWolfgangLorenzLDA() {
|
func testWolfgangLorenzLDA() {
|
||||||
self.runWolfgangLorenzTest("lda", suffixes: ["b", "z", "zx", "a", "ax", "ay", "ix", "iy"], processor: .processor6502)
|
self.runWolfgangLorenzTest("lda", suffixes: ["b", "z", "zx", "a", "ax", "ay", "ix", "iy"], processor: .processor6502)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user