1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Implement various ADD, SUB patterns.

This commit is contained in:
Thomas Harte 2022-05-19 20:50:37 -04:00
parent 6cfc0e80d9
commit af3518dc1f

View File

@ -156,12 +156,14 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler {
// To limit tests run to a subset of files and/or of tests, uncomment and fill in below.
_fileSet = [NSSet setWithArray:@[
@"add_sub.json",
// Below this line are passing tests.
@"eor_and_or.json",
@"abcd_sbcd.json",
@"eor_and_or.json",
@"nbcd.json",
@"ext.json"]];
// _testSet = [NSSet setWithArray:@[@"EOR b1a1"]];
// _testSet = [NSSet setWithArray:@[@"SUB 998c"]];
}
- (void)testAll {