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/dram.h | |
parent | a9af4fd3243e470ff33d50968f998bf78c152717 (diff) |
Impartial storage/dram classes
Diffstat (limited to 'inc/dram.h')
-rw-r--r-- | inc/dram.h | 16 |
1 files changed, 16 insertions, 0 deletions
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 <storage.h> + +class Dram : public Storage +{ + public: + Dram(); + ~Dram(); + + int *load_line(int); + + private: +}; + +#endif /* DRAM_H_INCLUDED */ |