mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
'Implement' ESC, NOP.
This commit is contained in:
parent
fe6e2eb0a1
commit
d24fa381c7
@ -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;
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user