diff options
author | bd <bdunahu@operationnull.com> | 2025-03-04 16:07:29 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-04 16:07:29 -0500 |
commit | b4d1e8248400015f2fd0c4b0f04cf33dc867e9cd (patch) | |
tree | c2544110d7e6c6bdcab9dee9527a1d8a67d324de /inc/storage.h | |
parent | a9af4fd3243e470ff33d50968f998bf78c152717 (diff) |
Impartial storage/dram classes
Diffstat (limited to 'inc/storage.h')
-rw-r--r-- | inc/storage.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/inc/storage.h b/inc/storage.h new file mode 100644 index 0000000..8973016 --- /dev/null +++ b/inc/storage.h @@ -0,0 +1,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 */ |