Changeset 503


Ignore:
Timestamp:
Aug 30, 2013, 10:52:48 AM (11 years ago)
Author:
haoliu
Message:

bug fixed in the vci_cc_vcache_wrapper component:
In the ICACHE_CC_INVAL and DCACHE_CC_INVAL states,
the value of tag in the caches should not be changed by zero.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/vci_cc_vcache_wrapper/caba/source/src/vci_cc_vcache_wrapper.cpp

    r488 r503  
    20032003
    20042004        // Switch slot state to ZOMBI and send CLEANUP command
    2005         r_icache.write_dir( 0,
    2006                             r_icache_cc_way.read(),
     2005        r_icache.write_dir( r_icache_cc_way.read(),
    20072006                            r_icache_cc_set.read(),
    20082007                            CACHE_SLOT_STATE_ZOMBI );
     
    48194818
    48204819        // Switch slot state to ZOMBI and send CLEANUP command
    4821         r_dcache.write_dir( 0,
    4822                             way,
     4820        r_dcache.write_dir( way,
    48234821                            set,
    48244822                            CACHE_SLOT_STATE_ZOMBI );
Note: See TracChangeset for help on using the changeset viewer.