1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-23 03:32:32 +00:00

Move 68010 up into the verified area.

This commit is contained in:
Thomas Harte 2022-10-27 10:52:26 -04:00
parent 7d82b2ad12
commit 041eb79bf8

View File

@ -73,16 +73,15 @@ template <Model model> void test(NSString *filename, Class cls) {
test<Model::M68000>(@"68000ops", [self class]);
}
- (void)test68010 {
test<Model::M68010>(@"68010ops", [self class]);
}
/*
TODO: generate new reference JSONs for tests below here.
For now these are here for manual verification of the diffs.
*/
- (void)test68010 {
test<Model::M68010>(@"68010ops", [self class]);
}
- (void)test68020 {
test<Model::M68020>(@"68010ops", [self class]);
}