source: trunk/IPs/systemC/Environment/Cache/src/Cache_OneLevel_access_uncached.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: 443 bytes
Line 
1#include "../include/Cache_OneLevel.h"
2
3namespace environment {
4namespace cache {
5namespace cache_onelevel {
6 
7  type_rsp_cache_t Cache_OneLevel::access_uncached (uint32_t num_port, uint32_t address, uint32_t trdid)
8  {
9    access_port[num_port].valid   = false;
10    access_port[num_port].trdid   = trdid;
11    access_port[num_port].hit     = MISS;
12    access_port[num_port].latence = param->miss_penality;
13   
14    return MISS;
15  }
16
17};
18};
19};
Note: See TracBrowser for help on using the repository browser.