summaryrefslogtreecommitdiff
path: root/src/ex.cc
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-05-10 18:52:04 -0400
committerbd <bdunahu@operationnull.com>2025-05-10 18:52:04 -0400
commitc5e989bbf1adf6cb0ea63f5d215db7c90518c607 (patch)
tree3dd8d5a2eef510f507161e9fef9ad64f85718c4f /src/ex.cc
parentebb2a3d33d4536bcace34e9ba95198067ae19522 (diff)
Rename load/store vector to i_vector
Diffstat (limited to 'src/ex.cc')
-rw-r--r--src/ex.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ex.cc b/src/ex.cc
index 45a018a..3c9632b 100644
--- a/src/ex.cc
+++ b/src/ex.cc
@@ -16,11 +16,11 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#include "ex.h"
+#include "instr.h"
#include "instrDTO.h"
#include "pipe_spec.h"
#include "response.h"
#include "stage.h"
-#include "instr.h"
#include <unordered_map>
// Switch statements for each instruction
@@ -46,9 +46,9 @@ void EX::advance_helper()
v3 = this->curr_instr->operands.vector.slot_three;
} else {
v_immediate =
- this->curr_instr->operands.load_store_vector.immediate;
+ this->curr_instr->operands.i_vector.immediate;
v_base_addr =
- this->curr_instr->operands.load_store_vector.base_addr;
+ this->curr_instr->operands.i_vector.base_addr;
}
if (v_len == 0) {
// clear destination vector reg
@@ -249,7 +249,7 @@ void EX::advance_helper()
this->curr_instr->mnemonic != STOREV) {
this->curr_instr->operands.vector.slot_one = v1;
} else {
- this->curr_instr->operands.load_store_vector.base_addr =
+ this->curr_instr->operands.i_vector.base_addr =
v_base_addr;
}
} else {