source: trunk/IPs/systemC/Environment/Cache/src/Cache_MultiLevel_print.cpp @ 81

Last change on this file since 81 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: 384 bytes
Line 
1#include "../include/Cache_MultiLevel.h"
2
3namespace environment {
4namespace cache {
5namespace cache_multilevel {
6
7  std::ostream& operator<< (std::ostream& output, Cache_MultiLevel & x)
8  {
9    output << x.information(0) << std::endl;
10
11     for (uint32_t i=0; i<x.param->nb_level; i++)
12      {
13        output << *(x.hierarchy_cache[i]) << std::endl;
14      }
15
16    return output;
17  }
18};
19};
20};
Note: See TracBrowser for help on using the repository browser.