From 26c24ab3c581967015490d1a11ee098bb5ba338a Mon Sep 17 00:00:00 2001 From: bd Date: Sun, 11 May 2025 12:20:33 -0400 Subject: Replaced STOREV with LOADV --- src/ex.cc | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'src/ex.cc') 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!"); } } -- cgit v1.2.3