summaryrefslogtreecommitdiff
path: root/gui/worker.h
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-04-19 04:16:00 -0400
committerbd <bdunahu@operationnull.com>2025-04-19 04:16:00 -0400
commit24de6faf71c85e0281b32fb899fcbe4fe82380c4 (patch)
treef0a6dc277b3684f036c544ac66ca695c6eef46f9 /gui/worker.h
parentc9b553e68dbd95a8faf5abf4f8e1362261bec99f (diff)
Reinstate rest of worker.cc functions such that programs work again
Diffstat (limited to 'gui/worker.h')
-rw-r--r--gui/worker.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/gui/worker.h b/gui/worker.h
index b6332b0..acfffcf 100644
--- a/gui/worker.h
+++ b/gui/worker.h
@@ -23,15 +23,16 @@ class Worker : public QObject
* The storage objects, stored smallest to largest.
*/
std::deque<Storage *> s;
- /**
- * The stage objects, starting with fetch.
- */
IF *if_stage;
ID *id_stage;
EX *ex_stage;
MM *mm_stage;
WB *wb_stage;
Controller *ct;
+ /**
+ * The size each progressive cache level increases by.
+ */
+ unsigned int size_inc;
public:
explicit Worker(QObject *parent = nullptr);