mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-18 23:29:49 +00:00
Attempts LDA tests against the 65816.
Result: ix is faulty. Which we already knew.
This commit is contained in:
parent
c01bc784b9
commit
776f014dbe
@ -11,12 +11,16 @@ import Foundation
|
||||
|
||||
class WolfgangLorenzTests: XCTestCase, CSTestMachineTrapHandler {
|
||||
|
||||
func testWolfgangLorenzStart() {
|
||||
self.runWolfgangLorenzTest(" start", processor: .processor6502)
|
||||
}
|
||||
func testWolfgangLorenzStart65816() {
|
||||
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() {
|
||||
self.runWolfgangLorenzTest("lda", suffixes: ["b", "z", "zx", "a", "ax", "ay", "ix", "iy"], processor: .processor6502)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user