1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Add BKPT and RTD.

This commit is contained in:
Thomas Harte 2022-10-25 22:35:44 -04:00
parent 8ddf20b36a
commit 46fee9c53a

View File

@ -244,6 +244,9 @@ const char *_to_string(Operation operation, bool is_quick) {
case Operation::STOP: return "STOP";
case Operation::RESET: return "RESET";
case Operation::BKPT: return "BKPT";
case Operation::RTD: return "RTD";
default:
assert(false);
return "???";