summaryrefslogtreecommitdiff
path: root/tests/dram.cc
diff options
context:
space:
mode:
authorSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-03-11 11:18:01 -0400
committerSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-03-11 11:34:13 -0400
commit93b010dbbcdc921bfccae673918eb9fbf354538a (patch)
treeba813d226ae916abfef2502d3746f8fa3fbc40dc /tests/dram.cc
parent1e1279817e8a2a03b8c1acb9425464c82a065e01 (diff)
support for reading word, writing line to storage, dirty cache eviction, cache load
Diffstat (limited to 'tests/dram.cc')
-rw-r--r--tests/dram.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dram.cc b/tests/dram.cc
index ff0d860..7b19ac4 100644
--- a/tests/dram.cc
+++ b/tests/dram.cc
@@ -196,7 +196,7 @@ TEST_CASE("Construct singleton dram, write a line to an address", "[dram]")
signed int w = 0x11223311;
expected = {w, w+1, w+2, w+3};
int addr = 0x00000000;
- d->write_line(expected, addr);
+ d->write_line(MEM, expected, addr);
Response r = d->read(MEM, 0x00000000, actual);
CHECK(r == OK);