diff options
author | Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> | 2025-03-11 11:18:01 -0400 |
---|---|---|
committer | Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> | 2025-03-11 11:34:13 -0400 |
commit | d7d24031e6df2529ba5c447da0393807be3e3e81 (patch) | |
tree | ba813d226ae916abfef2502d3746f8fa3fbc40dc /tests | |
parent | 7284cc1391dbb250cd6738a75853be7e3576fa41 (diff) |
support for reading word, writing line to storage, dirty cache eviction, cache load
Diffstat (limited to 'tests')
-rw-r--r-- | tests/dram.cc | 2 |
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); |