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 /src/ex.cc | |
parent | 6f4e9e0b914c3e68691a5d884cbad0b5813fcf18 (diff) |
Replaced STOREV with LOADV
Diffstat (limited to 'src/ex.cc')
-rw-r--r-- | src/ex.cc | 14 |
1 files changed, 5 insertions, 9 deletions
@@ -243,18 +243,14 @@ void EX::handle_vector_operations( void EX::handle_i_vector_operations(signed int &s1, signed int s2, Mnemonic m) { switch (m) { - case LOADV: - case STOREV: - s1 = s1 + s2; - break; - - case RET: - case NOP: - break; + // case SRDL: + // case SRDS: + // s1 = s1 + s2; + // break; default: throw std::invalid_argument("handle_i_vector_operations did not " - "receive a LOADV or STOREV operation!"); + "receive a SRDL or SRDS operation!"); } } |