diff options
author | bd <bdunahu@operationnull.com> | 2025-05-10 18:52:04 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-10 18:52:04 -0400 |
commit | c5e989bbf1adf6cb0ea63f5d215db7c90518c607 (patch) | |
tree | 3dd8d5a2eef510f507161e9fef9ad64f85718c4f /inc | |
parent | ebb2a3d33d4536bcace34e9ba95198067ae19522 (diff) |
Rename load/store vector to i_vector
Diffstat (limited to 'inc')
-rw-r--r-- | inc/instrDTO.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/instrDTO.h b/inc/instrDTO.h index 98247a3..12c72d9 100644 --- a/inc/instrDTO.h +++ b/inc/instrDTO.h @@ -33,7 +33,7 @@ struct V_TYPE { std::array<signed int, V_R_LIMIT> slot_three; }; -struct LOAD_STORE_V_TYPE { +struct VI_TYPE { signed int base_addr; signed int immediate; std::array<signed int, V_R_LIMIT> vector_register; @@ -67,7 +67,7 @@ struct InstrDTO { union { struct U_INT_TYPE integer; struct V_TYPE vector; - struct LOAD_STORE_V_TYPE load_store_vector; + struct VI_TYPE i_vector; } operands; }; |