summaryrefslogtreecommitdiff
path: root/inc/storage.h
blob: 8973016d29824c5a72e1ad76317ca20b4dc80aa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef STORAGE_H
#define STORAGE_H
#include <array>
#include <vector>

class Storage
{
  public:
	int **view(int base) { return nullptr; }
	virtual bool store();

	std::vector<std::array<signed int, 4>> address_space;
};

#endif /* STORAGE_H_INCLUDED */