diff options
author | bd <bdunahu@operationnull.com> | 2025-05-10 17:02:27 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-10 17:02:27 -0400 |
commit | f0f773a1f2acc3030c89fc5aa6335f667987aa2a (patch) | |
tree | e3f27a3e6d78a9f15ce6fb1b6f3b40202aa5ab3e /inc/instrDTO.h | |
parent | 5beea0c476101ec7b122f3b2181d92ce096492fb (diff) |
Fix issue where decode would overwrite raw bits while in use
Diffstat (limited to 'inc/instrDTO.h')
-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 f3d4597..f4ef416 100644 --- a/inc/instrDTO.h +++ b/inc/instrDTO.h @@ -19,7 +19,7 @@ #define INSTRDTO_H #include "instr.h" #include "pipe_spec.h" -#include<array> +#include <array> struct U_INT_TYPE { signed int slot_one; @@ -33,7 +33,7 @@ struct V_TYPE { std::array<signed int, V_R_LIMIT> slot_three; }; -struct LOAD_STORE_V_TYPE{ +struct LOAD_STORE_V_TYPE { signed int base_addr; signed int immediate; std::array<signed int, V_R_LIMIT> vector_register; |