1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-10 12:29:01 +00:00

Adds a TODO list in order to keep an end in sight.

This commit is contained in:
Thomas Harte 2020-10-13 21:43:42 -04:00
parent b22aa5d699
commit f05e0d956b

View File

@ -90,4 +90,17 @@ class WDC65816AddressingTests: XCTestCase {
XCTAssertEqual(machine.value(for: .programCounter), 0x3456 + 1)
XCTAssertEqual(machine.value(for: .programBank), 0x12)
}
// TODO:
// Direct [x2]
// Direct, X [x2]
// (Direct) [x2]
// [Direct]
// (Direct, X) [x2]
// (Direct), Y [x2]
// [Direct], Y
// Long
// Long, X
// Stack, S
// (Stack, S), Y
}