diff options
author | bd <bdunahu@operationnull.com> | 2025-04-17 19:56:53 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-17 19:56:53 -0400 |
commit | 984ce6eef2e439955ff991f90c2b654be7c6c3f3 (patch) | |
tree | e936781b52c6846d87c98381ed47bc7da7c43bff /src/sim/stage.cc | |
parent | 082200691a5d95f716a9d1dc127c858322cdff37 (diff) |
Add option to turn off pipeline
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 7df1dba..9528e4b 100644 --- a/src/sim/stage.cc +++ b/src/sim/stage.cc @@ -17,6 +17,7 @@ std::deque<signed int> Stage::checked_out; unsigned int Stage::pc; Storage *Stage::storage; bool Stage::is_pipelined; +bool Stage::is_empty; int Stage::clock_cycle; bool Stage::get_condition(CC c) { return (this->gprs[3] >> c) & 1; } |