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/dram.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 inc/dram.h (limited to 'inc/dram.h') diff --git a/inc/dram.h b/inc/dram.h new file mode 100644 index 0000000..5bc933e --- /dev/null +++ b/inc/dram.h @@ -0,0 +1,16 @@ +#ifndef DRAM_H +#define DRAM_H +#include + +class Dram : public Storage +{ + public: + Dram(); + ~Dram(); + + int *load_line(int); + + private: +}; + +#endif /* DRAM_H_INCLUDED */ -- cgit v1.2.3