diff options
author | bd <bdunahu@operationnull.com> | 2025-03-09 20:56:00 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-09 20:56:00 -0400 |
commit | 4676d633edaea37b5661e4f91742b42fcf5b7881 (patch) | |
tree | 9b5670221859de5f042f677a7b294c6b46d83518 /inc | |
parent | 4dc12d82699520bdc6875e5177ae8a6a2c2dea04 (diff) |
cache store single test
Diffstat (limited to 'inc')
-rw-r--r-- | inc/cache.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/inc/cache.h b/inc/cache.h index c8c9736..e8b7030 100644 --- a/inc/cache.h +++ b/inc/cache.h @@ -3,7 +3,6 @@ #include "definitions.h" #include "storage.h" #include <array> -#include <bitset> class Cache : public Storage { @@ -17,7 +16,7 @@ class Cache : public Storage * @param The number of clock cycles each access takes. * @return A new cache object. */ - Cache(int lines, Storage *lower, int delay); + Cache(Storage *lower, int delay); ~Cache(); Response write(Accessor accessor, signed int data, int address) override; |