aboutsummaryrefslogtreecommitdiffstats
path: root/src/Memory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Memory.hpp')
-rw-r--r--src/Memory.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Memory.hpp b/src/Memory.hpp
new file mode 100644
index 0000000..eecb0dd
--- /dev/null
+++ b/src/Memory.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <memory>
+
+namespace DMG01
+{
+ class Memory
+ {
+ public:
+ std::unique_ptr<unsigned char[]> space;
+ Memory();
+ };
+}