mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-06 13:31:55 +00:00
Add text conversions.
This commit is contained in:
parent
53140c016e
commit
c2b8cbfefc
@ -138,8 +138,12 @@ const char *_to_string(Operation operation, bool is_quick) {
|
||||
case Operation::JMP: return "JMP";
|
||||
case Operation::JSR: return "JSR";
|
||||
case Operation::RTS: return "RTS";
|
||||
case Operation::RTD: return "RTD";
|
||||
case Operation::RTM: return "RTM";
|
||||
|
||||
case Operation::DBcc: return "DBcc";
|
||||
case Operation::Scc: return "Scc";
|
||||
case Operation::TRAPcc: return "TRAPcc";
|
||||
|
||||
case Operation::Bccb:
|
||||
case Operation::Bccl:
|
||||
@ -252,7 +256,18 @@ const char *_to_string(Operation operation, bool is_quick) {
|
||||
case Operation::RESET: return "RESET";
|
||||
|
||||
case Operation::BKPT: return "BKPT";
|
||||
case Operation::RTD: return "RTD";
|
||||
|
||||
case Operation::BFCHG: return "BFCHG";
|
||||
case Operation::BFCLR: return "BFCLR";
|
||||
case Operation::BFEXTS: return "BFEXTS";
|
||||
case Operation::BFEXTU: return "BFEXTU";
|
||||
case Operation::BFFFO: return "BFFFO";
|
||||
case Operation::BFINS: return "BFINS";
|
||||
case Operation::BFSET: return "BFSET";
|
||||
case Operation::BFTST: return "BFTST";
|
||||
|
||||
case Operation::PACK: return "PACK";
|
||||
case Operation::UNPK: return "UNPK";
|
||||
|
||||
default:
|
||||
assert(false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user