#include "../include/Cache_MultiLevel.h" #include namespace environnement { namespace cache { namespace cache_multilevel { // Return the time to have the data // latence is call on the same port in a single cycle, only the last access is save uint32_t Cache_MultiLevel::latence (uint32_t num_port, uint32_t address, uint32_t trdid, type_req_cache_t type, direction_req_cache_t dir) { return update_access (access (num_port, address, trdid, type, dir)); } }; }; };