summaryrefslogtreecommitdiff
path: root/src/ex.cc
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-05-11 12:20:33 -0400
committerbd <bdunahu@operationnull.com>2025-05-11 12:21:34 -0400
commit26c24ab3c581967015490d1a11ee098bb5ba338a (patch)
tree94c8f59ae7d530127d8cd49ce1e6480da7397d6f /src/ex.cc
parent6f4e9e0b914c3e68691a5d884cbad0b5813fcf18 (diff)
Replaced STOREV with LOADV
Diffstat (limited to 'src/ex.cc')
-rw-r--r--src/ex.cc14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/ex.cc b/src/ex.cc
index 56a59d7..3328cbe 100644
--- a/src/ex.cc
+++ b/src/ex.cc
@@ -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!");
}
}