#ifndef CACHE_H #define CACHE_H #include namespace machine { class Cache : public MemoryAccess { public: Cache(Memory *m); }; class CacheAssociative : public Cache { public: CacheAssociative(Memory *m); }; // TODO other chaches } #endif // CACHE_H