diff options
author | bd <bdunahu@operationnull.com> | 2025-05-11 12:20:33 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-11 12:21:34 -0400 |
commit | 26c24ab3c581967015490d1a11ee098bb5ba338a (patch) | |
tree | 94c8f59ae7d530127d8cd49ce1e6480da7397d6f /gui | |
parent | 6f4e9e0b914c3e68691a5d884cbad0b5813fcf18 (diff) |
Replaced STOREV with LOADV
Diffstat (limited to 'gui')
-rw-r--r-- | gui/gui.h | 21 |
1 files changed, 10 insertions, 11 deletions
@@ -160,17 +160,16 @@ class GUI : public QMainWindow {Mnemonic::SUBV, "SUBV"}, {Mnemonic::MULV, "MULV"}, {Mnemonic::DIVV, "DIVV"}, {Mnemonic::CMP, "CMP"}, {Mnemonic::CEV, "CEV"}, {Mnemonic::LOAD, "LOAD"}, - {Mnemonic::LOADV, "LOADV"}, {Mnemonic::ADDI, "ADDI"}, - {Mnemonic::SUBI, "SUBI"}, {Mnemonic::SFTRI, "SFTRI"}, - {Mnemonic::SFTLI, "SFTLI"}, {Mnemonic::ANDI, "ANDI"}, - {Mnemonic::ORI, "ORI"}, {Mnemonic::XORI, "XORI"}, - {Mnemonic::STORE, "STORE"}, {Mnemonic::STOREV, "STOREV"}, - {Mnemonic::JMP, "JMP"}, {Mnemonic::JRL, "JRL"}, - {Mnemonic::JAL, "JAL"}, {Mnemonic::BEQ, "BEQ"}, - {Mnemonic::BGT, "BGT"}, {Mnemonic::BUF, "BUF"}, - {Mnemonic::BOF, "BOF"}, {Mnemonic::PUSH, "PUSH"}, - {Mnemonic::POP, "POP"}, {Mnemonic::NOP, "NOP"}, - {Mnemonic::RET, "RET"}, + {Mnemonic::ADDI, "ADDI"}, {Mnemonic::SUBI, "SUBI"}, + {Mnemonic::SFTRI, "SFTRI"}, {Mnemonic::SFTLI, "SFTLI"}, + {Mnemonic::ANDI, "ANDI"}, {Mnemonic::ORI, "ORI"}, + {Mnemonic::XORI, "XORI"}, {Mnemonic::SRDL, "SRDL"}, + {Mnemonic::SRDS, "SRDS"}, {Mnemonic::JMP, "JMP"}, + {Mnemonic::JRL, "JRL"}, {Mnemonic::JAL, "JAL"}, + {Mnemonic::BEQ, "BEQ"}, {Mnemonic::BGT, "BGT"}, + {Mnemonic::BUF, "BUF"}, {Mnemonic::BOF, "BOF"}, + {Mnemonic::PUSH, "PUSH"}, {Mnemonic::POP, "POP"}, + {Mnemonic::NOP, "NOP"}, {Mnemonic::RET, "RET"}, }; QString mnemonicToString(Mnemonic mnemonic) { |