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

Corrects collection of instruction codes.

This commit is contained in:
Thomas Harte 2019-12-16 00:01:18 -05:00
parent e603fc6aaa
commit 60a9b260b1

View File

@ -186,7 +186,7 @@
// Consider collating extra detail.
if([_failures containsObject:name]) {
[_failingOpcodes addObject:@((test68000->ram[0x100] << 8) | test68000->ram[0x101])];
[_failingOpcodes addObject:@((test68000->ram[0x101] << 8) | test68000->ram[0x100])];
}
};