Changeset 336 for branches/v5/modules/vci_cc_vcache_wrapper_dspin_coherence
- Timestamp:
- Mar 27, 2013, 2:25:37 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/v5/modules/vci_cc_vcache_wrapper_dspin_coherence/caba/source/src/vci_cc_vcache_wrapper_dspin_coherence.cpp
r333 r336 5676 5676 // it depends on the CMD FSM state 5677 5677 5678 bool is_sc_or_cas = (r_vci_cmd_fsm.read() == CMD_DATA_CAS) or 5679 (r_vci_cmd_fsm.read() == CMD_DATA_SC ); 5680 5678 5681 p_vci_ini_d.pktid = 0; 5679 5682 p_vci_ini_d.srcid = m_srcid_d; 5680 p_vci_ini_d.cons = (r_vci_cmd_fsm.read() == CMD_DATA_CAS);5681 p_vci_ini_d.contig = not (r_vci_cmd_fsm.read() == CMD_DATA_CAS);5683 p_vci_ini_d.cons = is_sc_or_cas; 5684 p_vci_ini_d.contig = not is_sc_or_cas; 5682 5685 p_vci_ini_d.wrap = false; 5683 5686 p_vci_ini_d.clen = 0;
Note: See TracChangeset
for help on using the changeset viewer.