diff options
author | bd <bdunahu@operationnull.com> | 2025-03-29 02:36:38 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-29 02:36:38 -0400 |
commit | bc47d9131869b1f072e21d9cb61746d14bf30751 (patch) | |
tree | 3da9c04aa06f606d729c6267248966cd17ea7c63 /src/sim/stage.cc | |
parent | b06f7b0546d679958153263e15ea857659819499 (diff) |
get_instr_fields return mnemonic rather than opcode and type
Diffstat (limited to 'src/sim/stage.cc')
-rw-r--r-- | src/sim/stage.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sim/stage.cc b/src/sim/stage.cc index 6599298..560cc41 100644 --- a/src/sim/stage.cc +++ b/src/sim/stage.cc @@ -5,6 +5,7 @@ Stage::Stage(Stage *next) { } std::array<int, GPR_NUM> Stage::gprs; +std::array<int, V_NUM> Stage::vrs; unsigned int Stage::pc; Storage *Stage::storage; bool Stage::is_pipelined; |