diff options
Diffstat (limited to 'inc/dram.h')
-rw-r--r-- | inc/dram.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -19,7 +19,15 @@ class Dram : public Storage Response read(Accessor accessor, int address, std::array<signed int, LINE_SIZE>& data) override; private: + /** + * Helper for `write`. + */ + void do_write(signed int, int); + /** + * Helper for `read`. + */ void do_read(std::array<signed int, LINE_SIZE>& data_line, int address); }; #endif /* DRAM_H_INCLUDED */ + |