I need a very basic C or C++ source code of CPU cache. Google didnt help me find a proper one. The implementation only needs to provide the most fundamental functionality of a cache. For ex, in C++:
class Cache{
... //parameter setup of way, capacity, etc
public: access(addr){
miss=inspect(addr);
if(miss){ fetch_mem(addr); replace_policy...;}
else{...}
}
...
};
Does someone know some source code as such?
Thanks!!