summaryrefslogtreecommitdiff
path: root/src/Memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Memory.h')
-rw-r--r--src/Memory.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Memory.h b/src/Memory.h
new file mode 100644
index 0000000..d030b1e
--- /dev/null
+++ b/src/Memory.h
@@ -0,0 +1,15 @@
+#ifndef ARZU_INTERPRETER_MEMORY
+#define ARZU_INTERPRETER_MEMORY
+
+#include "MemoryData.h"
+#include <list>
+#include <stack>
+using namespace std;
+
+struct Memory {
+ list<MemoryData*> vars;
+ stack<MemoryData*> work;
+ stack<unsigned int> scopeVars;
+};
+
+#endif