source: trunk/IPs/systemC/Environment/Cache/src/Cache_OneLevel_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: 366 bytes
Line 
1#include "../include/Cache_OneLevel.h"
2
3namespace environment {
4namespace cache {
5namespace cache_onelevel {
6 
7  // Return the time to have the data
8  // uncache is to stocke the address on the cache
9  uint32_t Cache_OneLevel::latence (uint32_t num_port)
10  {
11    uint32_t res = param->hit_latence + access_port[num_port].latence;
12   
13    return res;
14  }
15
16};
17};
18};
Note: See TracBrowser for help on using the repository browser.