source: trunk/IPs/systemC/Environment/Cache/src/Cache_OneLevel_index_victim.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: 365 bytes
Line 
1#include "../include/Cache_OneLevel.h"
2
3namespace environment {
4namespace cache {
5namespace cache_onelevel {
6
7  // return the index of the next victim
8  uint32_t Cache_OneLevel::index_victim (uint32_t familly)
9  {
10    uint32_t victim = 0;
11    while (tag [familly][victim].index_lru != (param->associativity-1))
12      victim ++;
13   
14    return victim;
15  }
16};
17};
18};
Note: See TracBrowser for help on using the repository browser.