Changeset 336 for branches/v5/modules/vci_cc_vcache_wrapper
- 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/caba/source/src/vci_cc_vcache_wrapper.cpp
r304 r336 5652 5652 // it depends on the CMD FSM state 5653 5653 5654 bool is_sc_or_cas = (r_vci_cmd_fsm.read() == CMD_DATA_CAS) or 5655 (r_vci_cmd_fsm.read() == CMD_DATA_SC ); 5656 5654 5657 p_vci_ini_d.pktid = 0; 5655 5658 p_vci_ini_d.srcid = m_srcid_d; 5656 p_vci_ini_d.cons = (r_vci_cmd_fsm.read() == CMD_DATA_CAS);5657 p_vci_ini_d.contig = not (r_vci_cmd_fsm.read() == CMD_DATA_CAS);5659 p_vci_ini_d.cons = is_sc_or_cas; 5660 p_vci_ini_d.contig = not is_sc_or_cas; 5658 5661 p_vci_ini_d.wrap = false; 5659 5662 p_vci_ini_d.clen = 0;
Note: See TracChangeset
for help on using the changeset viewer.