diff options
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; |