From d7d24031e6df2529ba5c447da0393807be3e3e81 Mon Sep 17 00:00:00 2001 From: Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> Date: Tue, 11 Mar 2025 11:18:01 -0400 Subject: support for reading word, writing line to storage, dirty cache eviction, cache load --- tests/dram.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') 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); -- cgit v1.2.3