diff options
Diffstat (limited to 'qtmips_machine/cache.h')
-rw-r--r-- | qtmips_machine/cache.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/qtmips_machine/cache.h b/qtmips_machine/cache.h index 638aa10..1bf82bf 100644 --- a/qtmips_machine/cache.h +++ b/qtmips_machine/cache.h @@ -2,21 +2,15 @@ #define CACHE_H #include <memory.h> +#include <machineconfig.h> namespace machine { class Cache : public MemoryAccess { public: - Cache(Memory *m); + Cache(Memory *m, MachineConfigCache *c); }; -class CacheAssociative : public Cache { -public: - CacheAssociative(Memory *m); -}; - -// TODO other chaches - } #endif // CACHE_H |