source: trunk/IPs/systemC/Environment/Cache/src/Cache_reset.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: 283 bytes
Line 
1#include "../include/Cache.h"
2
3namespace environment {
4namespace cache {
5
6  void Cache::reset (void)
7  {
8    for (uint32_t i=0; i<param->nb_cache_dedicated; i++)
9      {
10        icache_dedicated[i]->reset();
11        dcache_dedicated[i]->reset();
12      }
13   
14    cache_shared->reset();
15  }
16
17};
18};
Note: See TracBrowser for help on using the repository browser.