diff options
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 */ |