summaryrefslogtreecommitdiff
path: root/tests/controller.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 /tests/controller.cc
parentb778ccc3e7c2f2ac3c4892a87f5269f342fd895f (diff)
Partial fixes for changes in DRAM/Cache, including uncovered bug
Diffstat (limited to 'tests/controller.cc')
-rw-r--r--tests/controller.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/controller.cc b/tests/controller.cc
index a009a70..74284b7 100644
--- a/tests/controller.cc
+++ b/tests/controller.cc
@@ -16,7 +16,7 @@ class ControllerPipeFixture
ControllerPipeFixture()
{
this->d = new Dram(1);
- this->c = new Cache(this->d, 0);
+ this->c = new Cache(this->d, 5, 0, 0);
IF *f = new IF(nullptr);
ID *d = new ID(f);