source: trunk/IPs/systemC/Environment/Cache/src/Cache_MultiLevel_latence.cpp @ 80

Last change on this file since 80 was 80, checked in by rosiere, 16 years ago

Oups, Environnement is french :P

File size: 489 bytes
Line 
1#include "../include/Cache_MultiLevel.h"
2#include <sstream>
3
4namespace environment {
5namespace cache {
6namespace cache_multilevel {
7
8  // Return the time to have the data
9  // latence is call on the same port in a single cycle, only the last access is save
10  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)
11  {
12    return update_access (access (num_port, address, trdid, type, dir));
13  }
14
15};
16};
17};
Note: See TracBrowser for help on using the repository browser.