cachesim
A cache simulator
|
00001 /* -*- mode:c; coding: utf-8 -*- */ 00002 00008 #ifndef CACHE_H_INCLUDED 00009 #define CACHE_H_INCLUDED 00010 00011 #include "abstract_memory.h" 00012 #include "parse_config.h" 00013 #include "random.h" 00014 00024 AbstractMemory *cache_create(ConfigFile *cfg, const char *var_prefix, StatisticsInfo *info, AbstractMemory *mem, Random *rnd); 00025 00026 #endif 00027 00028 /* 00029 * Local variables: 00030 * c-basic-offset: 4 00031 * End: 00032 */