diff options
author | bd <bdunahu@operationnull.com> | 2025-03-06 00:34:35 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-06 00:34:35 -0500 |
commit | 3322aa0845f7fe9cc98aa4e429bd5ecf72a5c27e (patch) | |
tree | 75f627ee8e75c0763ab8b048496464c60e486490 /src/storage/cache.cc | |
parent | 20fe698a4074df4abe02f14a1a14481770e90abc (diff) |
dram write (no delay, no accessor tracking
Diffstat (limited to 'src/storage/cache.cc')
-rw-r--r-- | src/storage/cache.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/storage/cache.cc b/src/storage/cache.cc index a4df820..f4f60ba 100644 --- a/src/storage/cache.cc +++ b/src/storage/cache.cc @@ -1,10 +1,11 @@ #include "cache.h" +#include "definitions.h" #include "response.h" #include <bits/stdc++.h> Cache::Cache(int lines, Storage *lower, int delay) { - this->data = new std::vector<std::array<signed int, 4>>; + this->data = new std::vector<std::array<signed int, LINE_SIZE>>; this->data->resize(lines); this->lower = lower; this->delay = delay; |