diff options
author | Karel Kočí <cynerd@email.cz> | 2018-01-15 15:22:44 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-01-15 15:22:44 +0100 |
commit | d7d9860051a9a9eb2c6f11684535ac65cce38eb8 (patch) | |
tree | 55976fdbfcac8fd34bb073258c5fc32506c11022 /qtmips_machine/cache.h | |
parent | a8d4f0d2c7ec70f22b1fb4a7614ebd076a2916cd (diff) | |
download | qtmips-d7d9860051a9a9eb2c6f11684535ac65cce38eb8.tar.gz qtmips-d7d9860051a9a9eb2c6f11684535ac65cce38eb8.tar.bz2 qtmips-d7d9860051a9a9eb2c6f11684535ac65cce38eb8.zip |
Cleanup some todos in code
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 |