summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/memory/driver.cc0
-rw-r--r--src/storage/dram.cc5
2 files changed, 5 insertions, 0 deletions
diff --git a/src/memory/driver.cc b/src/memory/driver.cc
deleted file mode 100644
index e69de29..0000000
--- a/src/memory/driver.cc
+++ /dev/null
diff --git a/src/storage/dram.cc b/src/storage/dram.cc
new file mode 100644
index 0000000..9e6f6f1
--- /dev/null
+++ b/src/storage/dram.cc
@@ -0,0 +1,5 @@
+#include <dram.h>
+
+Dram::Dram() {
+ address_space.resize(4096);
+}