diff options
author | bd <bdunahu@operationnull.com> | 2025-04-01 20:36:31 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-01 20:36:31 -0400 |
commit | 68324683cde10c636a4a602644f3e64d24b0e412 (patch) | |
tree | b87195d06940fbb526785a5e4c59b76780d00b22 /inc/stage.h | |
parent | 25ce77db5f0dbfe6064eb0553591f1b956bad24a (diff) |
Lots of fixes and tests
Diffstat (limited to 'inc/stage.h')
-rw-r--r-- | inc/stage.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/inc/stage.h b/inc/stage.h index 87ee9c1..20f0191 100644 --- a/inc/stage.h +++ b/inc/stage.h @@ -64,6 +64,11 @@ class Stage */ void squash(); + /** + * The set of registers currently checked out. + */ + static std::deque<signed int> checked_out; + protected: /** * The function expected to do the majority of the work. @@ -120,11 +125,6 @@ class Stage * The current clock cycle. */ static int clock_cycle; - // TODO fix this comment after writeback stage - /** - * The set of registers currently checked out. - */ - static std::deque<signed int> checked_out; /** * A pointer to the next stage in the pipeline. */ |