summaryrefslogtreecommitdiff
path: root/inc/dram.h
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-05 14:20:15 -0500
committerbd <bdunahu@operationnull.com>2025-03-05 14:20:15 -0500
commite296a3a6ab782cb80b7091324b41bb78db6d3906 (patch)
treeaf137790ab40290d1cc4e83f3261370c591512bc /inc/dram.h
parentdb158de830e4fd4ab20ef5d357e24147c7a9281d (diff)
whitespace
Diffstat (limited to 'inc/dram.h')
-rw-r--r--inc/dram.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/inc/dram.h b/inc/dram.h
index c8782d1..41dd7de 100644
--- a/inc/dram.h
+++ b/inc/dram.h
@@ -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 */