summaryrefslogtreecommitdiff
path: root/gui/worker.cc
diff options
context:
space:
mode:
authorSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-04-18 04:29:15 -0400
committerSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-04-18 04:29:15 -0400
commitcdc9d9c6195cf51e2d1ff10ff4f29797d3e51691 (patch)
tree4dcf1e21241353d40e15545cd4032defd302a25f /gui/worker.cc
parent06632f57c9047b7e54a274b6b020bcc83f5f9a64 (diff)
further changes to initialize
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 fac835e..2612eb1 100644
--- a/gui/worker.cc
+++ b/gui/worker.cc
@@ -3,7 +3,7 @@
Worker::Worker(QObject *parent) : QObject(parent) {}
void Worker::configure(std::vector<int> ways, std::vector<int> size, bool is_pipelined, bool is_cache_enabled) {
- this->d = new Dram(ways.size()+1);
+ this->d = new Dram(ways.size()+10);
setWays(ways);
setSize(size);
qDebug() << "is cache enabled:" << is_cache_enabled;