source: trunk/IPs/systemC/Environment/Cache/src/Cache_OneLevel_access_flush.cpp @ 101

Last change on this file since 101 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 357 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_flush (uint32_t num_port, uint32_t address, uint32_t trdid)
8  {
9    std::cerr << "<" << name << ".{Cache_OneLevel}.access_flush> Not implemented" << std::endl;
10    exit (0);
11    return MISS;
12  }
13
14};
15};
16};
Note: See TracBrowser for help on using the repository browser.