summaryrefslogtreecommitdiff
path: root/gui/worker.cc
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-04-16 22:22:09 -0400
committerbd <bdunahu@operationnull.com>2025-04-16 22:22:09 -0400
commit23d3ebb2702e6b08c7f6b997067e1bc76483b813 (patch)
treeda31aa76d8ea073d92757466985ecdf9ff57a2d9 /gui/worker.cc
parentb778ccc3e7c2f2ac3c4892a87f5269f342fd895f (diff)
Partial fixes for changes in DRAM/Cache, including uncovered bug
Diffstat (limited to 'gui/worker.cc')
-rw-r--r--gui/worker.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/worker.cc b/gui/worker.cc
index e7c9876..947a3a4 100644
--- a/gui/worker.cc
+++ b/gui/worker.cc
@@ -6,7 +6,7 @@ void Worker::doWork()
{
qDebug() << "Initializing...";
this->d = new Dram(0);
- this->c = new Cache(this->d, 0);
+ this->c = new Cache(this->d, 5, 0, 0);
this->if_stage = new IF(nullptr);
this->id_stage = new ID(if_stage);
this->ex_stage = new EX(id_stage);