summaryrefslogtreecommitdiff
path: root/src/storage/dram.cc
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-06 00:03:00 -0500
committerbd <bdunahu@operationnull.com>2025-03-06 00:03:00 -0500
commit20fe698a4074df4abe02f14a1a14481770e90abc (patch)
treee1d14c2ea93c1a4e6d87f007575e744a472147e0 /src/storage/dram.cc
parente296a3a6ab782cb80b7091324b41bb78db6d3906 (diff)
Storage.view method, some initial tests
Diffstat (limited to 'src/storage/dram.cc')
-rw-r--r--src/storage/dram.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/storage/dram.cc b/src/storage/dram.cc
index 20858cd..89c7316 100644
--- a/src/storage/dram.cc
+++ b/src/storage/dram.cc
@@ -1,9 +1,10 @@
-#include <dram.h>
-#include <response.h>
+#include "dram.h"
+#include "response.h"
+#include <algorithm>
Dram::Dram(int lines, int delay)
{
- this->data = new std::vector<std::array<unsigned int, 4>>;
+ this->data = new std::vector<std::array<signed int, 4>>;
this->data->resize(lines);
this->delay = delay;
this->lower = nullptr;
@@ -17,5 +18,3 @@ Response *Dram::write(Accessor accessor, signed int data, int address)
}
Response *Dram::read(Accessor accessor, int address) { return nullptr; }
-
-int **Dram::view(int base, int lines) { return nullptr; }