Changeset 117 for trunk/IPs/systemC/Environment/Cache/src
- Timestamp:
- May 16, 2009, 4:42:39 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/Environment/Cache/src/Cache_latence.cpp
r81 r117 26 26 if (type_cache == INSTRUCTION_CACHE) 27 27 { 28 _ cout(CACHE,"Instruction");28 __cout(CACHE,"Instruction"); 29 29 cache = icache_dedicated [num_entity]; 30 30 param_cache_dedicated = param->param_icache_dedicated [num_entity]; … … 32 32 else 33 33 { 34 _ cout(CACHE,"Data");34 __cout(CACHE,"Data"); 35 35 cache = dcache_dedicated [num_entity]; 36 36 param_cache_dedicated = param->param_dcache_dedicated [num_entity]; 37 37 } 38 _ cout(CACHE," [%d] - entity : %d, address : 0x%.x\n",num_port,num_entity,address);38 __cout(CACHE," [%d] - entity : %d, address : 0x%.x\n",num_port,num_entity,address); 39 39 40 40 if (num_port >= cache->param->nb_port) … … 49 49 if (access_dedicated.hit == MISS) 50 50 { 51 _cout(CACHE," * Access Cache_shared ");51 _cout(CACHE," * Access Cache_shared\n"); 52 52 53 53 // Make a access with this level "shared"
Note: See TracChangeset
for help on using the changeset viewer.