1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

'Implement' ESC, NOP.

This commit is contained in:
Thomas Harte 2023-10-09 15:03:01 -04:00
parent fe6e2eb0a1
commit d24fa381c7
2 changed files with 10 additions and 0 deletions

View File

@ -590,6 +590,9 @@ template <
}
return;
case Operation::ESC:
case Operation::NOP: return;
case Operation::ADC: Primitive::adc(destination(), source(), status); break;
case Operation::ADD: Primitive::add(destination(), source(), status); break;
case Operation::AND: Primitive::and_(destination(), source(), status); break;

View File

@ -285,6 +285,13 @@ struct FailedExecution {
@"98.json.gz", // CBW
@"99.json.gz", // CWD
// ESC
@"D8.json.gz", @"D9.json.gz", @"DA.json.gz", @"DB.json.gz",
@"DC.json.gz", @"DD.json.gz", @"DE.json.gz", @"DE.json.gz",
// NOP
@"90.json.gz",
// ADC
@"10.json.gz", @"11.json.gz", @"12.json.gz", @"13.json.gz", @"14.json.gz", @"15.json.gz",
@"80.2.json.gz", @"81.2.json.gz", @"83.2.json.gz",