1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

Treat 'invalid' as a silent failure.

This commit is contained in:
Thomas Harte 2023-12-01 15:35:51 -05:00
parent 33a0c40c02
commit f50c45cc1a

View File

@ -172,6 +172,8 @@ template <
default:
assert(false);
case Operation::Invalid:
// TODO: throw on higher-order processors.
case Operation::ESC:
case Operation::NOP: return;