Changeset 104 for trunk/modules/vci_cc_vcache_wrapper_v1
- Timestamp:
- Oct 5, 2010, 4:04:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/vci_cc_vcache_wrapper_v1/caba/source/src/vci_cc_vcache_wrapper_v1.cpp
r61 r104 614 614 615 615 // multi-update or multi-invalidate for data type 616 if ( ( address!= 0x3 ) && ( ! m_segment.contains(address)) )616 if ( ( (address & 0x3) != 0x3 ) && ( ! m_segment.contains(address)) ) 617 617 { 618 618 std::cout << "error in component VCI_CC_VCACHE_WRAPPER " << name() << std::endl; … … 628 628 (paddr_t)p_vci_tgt.wdata.read() * m_dcache_words * 4; 629 629 630 if ( address== 0x3 ) // broadcast invalidate for data or instruction type630 if ( (address & 0x3) == 0x3 ) // broadcast invalidate for data or instruction type 631 631 { 632 632 if ( ! p_vci_tgt.eop.read() )
Note: See TracChangeset
for help on using the changeset viewer.