From 23d3ebb2702e6b08c7f6b997067e1bc76483b813 Mon Sep 17 00:00:00 2001 From: bd Date: Wed, 16 Apr 2025 22:22:09 -0400 Subject: Partial fixes for changes in DRAM/Cache, including uncovered bug --- gui/worker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gui/worker.cc') 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); -- cgit v1.2.3