- Timestamp:
- Apr 15, 2008, 8:40:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/Environment/Cache/src/Cache_MultiLevel_access.cpp
-
Property
svn:keywords
set to
Id
r80 r81 16 16 { 17 17 hit = hierarchy_cache[i]->access (num_port,address,trdid,type,dir); 18 time += hierarchy_cache[i]->latence(num_port); 18 uint32_t latence = hierarchy_cache[i]->latence(num_port); 19 time += latence; 19 20 20 std::cout << "SETH : " 21 << " * i : " << i 22 << " * hit : " << hit 23 << " * time :" << time << std::endl; 24 21 _cout(CACHE," * Level [%d] - type_hit %d, latence %d, Sum latence %d\n",i,hit,latence,time); 22 25 23 if ( (hit == HIT_CACHE) or 26 24 (hit == HIT_WRITE_BUFFER) or -
Property
svn:keywords
set to
Note: See TracChangeset
for help on using the changeset viewer.