source: trunk/IPs/systemC/hierarchy_memory/cache/type_req_cache.h @ 85

Last change on this file since 85 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: 481 bytes
Line 
1#ifndef TYPE_REQ_CACHE_H
2#define TYPE_REQ_CACHE_H
3
4namespace hierarchy_memory
5{
6typedef enum
7  {
8    READ       ,
9    WRITE      ,
10    NONE
11  } direction_req_cache_t;
12
13typedef enum 
14  {
15    CACHED     , // address can be in the cache
16    UNCACHED   , // Always miss (not address in cache)
17    INVALIDATE , // The direction is not used
18    PREFETCH   , // The direction is not used
19    FLUSH        // The direction is not used
20  } type_req_cache_t;
21};
22
23#endif //!TYPE_REQ_CACHE_H
24
Note: See TracBrowser for help on using the repository browser.