summaryrefslogtreecommitdiff
path: root/src/Memory.h
blob: d030b1ee34beef70e45d33b2b12585fc8cb9948b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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