summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-09 20:56:00 -0400
committerbd <bdunahu@operationnull.com>2025-03-09 20:56:00 -0400
commitdb0acc382a40a44a7d3859bd8ecf822dea86f622 (patch)
tree9b5670221859de5f042f677a7b294c6b46d83518 /inc
parent0b8679a7f74f22bfb1132e10e450df636e9bb6b2 (diff)
cache store single test
Diffstat (limited to 'inc')
-rw-r--r--inc/cache.h3
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;