summaryrefslogtreecommitdiff
path: root/tests/if.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/if.cc
parentb778ccc3e7c2f2ac3c4892a87f5269f342fd895f (diff)
Partial fixes for changes in DRAM/Cache, including uncovered bug
Diffstat (limited to 'tests/if.cc')
-rw-r--r--tests/if.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/if.cc b/tests/if.cc
index d6c1bca..5ccd73b 100644
--- a/tests/if.cc
+++ b/tests/if.cc
@@ -17,7 +17,7 @@ class IFFixture
p = {0xC000, 0xC001, 0xC002, 0xC003};
d->load(p);
- this->c = new Cache(d, this->c_delay);
+ this->c = new Cache(d, 5, 0, this->c_delay);
this->f = new IF(nullptr);
this->ct = new Controller(this->f, this->c, true);
}