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

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

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.