From b4d1e8248400015f2fd0c4b0f04cf33dc867e9cd Mon Sep 17 00:00:00 2001 From: bd Date: Tue, 4 Mar 2025 16:07:29 -0500 Subject: Impartial storage/dram classes --- inc/storage.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 inc/storage.h (limited to 'inc/storage.h') 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 +#include + +class Storage +{ + public: + int **view(int base) { return nullptr; } + virtual bool store(); + + std::vector> address_space; +}; + +#endif /* STORAGE_H_INCLUDED */ -- cgit v1.2.3