diff options
author | Siddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com> | 2025-03-21 14:21:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-21 14:21:06 -0400 |
commit | 24e8a72b40cb185de04821f31be65b0ec8768fb7 (patch) | |
tree | ffd8e0bd2b112180251804a096f601f745f9af1b /inc | |
parent | 89b9d1e4592d11cd6146b1bc3b3c12e241e574d3 (diff) | |
parent | cf3ac49639bef5082489068e2d92a4d86f42080b (diff) |
Merge pull request #27 from bdunahu/bdunahu
Make memory simulator an optional command, switch to test fixtures
Changes look good
Diffstat (limited to 'inc')
-rw-r--r-- | inc/dram.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ class Dram : public Storage * @param The number of clock cycles each access takes. * @return A new memory object. */ - Dram(int lines, int delay); + Dram(int delay); ~Dram(); Response |