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

Add ADD.b as a note to self that .q decoding is also required.

This commit is contained in:
Thomas Harte 2022-04-19 08:44:44 -04:00
parent 99f4cd867d
commit 9b61830a55

View File

@ -86,6 +86,7 @@ template <int index> NSString *operand(Preinstruction instruction) {
case Operation::ABCD: instruction = @"ABCD"; break;
case Operation::SBCD: instruction = @"SBCD"; break;
case Operation::NBCD: instruction = @"NBCD"; break;
case Operation::ADDb: instruction = @"ADD.b"; break;
// For now, skip any unmapped operations.
default: continue;