diff options
author | bd <bdunahu@operationnull.com> | 2025-03-05 14:20:15 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-05 14:20:15 -0500 |
commit | e296a3a6ab782cb80b7091324b41bb78db6d3906 (patch) | |
tree | af137790ab40290d1cc4e83f3261370c591512bc /inc/dram.h | |
parent | db158de830e4fd4ab20ef5d357e24147c7a9281d (diff) |
whitespace
Diffstat (limited to 'inc/dram.h')
-rw-r--r-- | inc/dram.h | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -5,19 +5,19 @@ class Dram : public Storage { public: - /** - * Constructor. - * @param The number of `lines` contained in memory. The total number of - * words is this number multiplied by 4. - * @param The number of clock cycles each access takes. - * @return A new memory object. - */ - Dram(int lines, int delay); - ~Dram(); + /** + * Constructor. + * @param The number of `lines` contained in memory. The total number of + * words is this number multiplied by 4. + * @param The number of clock cycles each access takes. + * @return A new memory object. + */ + Dram(int lines, int delay); + ~Dram(); - Response *write(Accessor accessor, signed int data, int address) override; - Response *read(Accessor accessor, int address) override; - int **view(int base, int lines) override; + Response *write(Accessor accessor, signed int data, int address) override; + Response *read(Accessor accessor, int address) override; + int **view(int base, int lines) override; }; #endif /* DRAM_H_INCLUDED */ |