Changeset 352 for trunk/modules
- Timestamp:
- Apr 4, 2013, 3:45:04 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/vci_cc_vcache_wrapper_v4/caba/source/src/vci_cc_vcache_wrapper_v4.cpp
r291 r352 5053 5053 // it depends on the CMD FSM state 5054 5054 5055 bool is_sc_or_cas = (r_vci_cmd_fsm.read() == CMD_DATA_CAS) or 5056 (r_vci_cmd_fsm.read() == CMD_DATA_SC ); 5057 5055 5058 p_vci_ini_d.pktid = 0; 5056 5059 p_vci_ini_d.srcid = m_srcid_d; 5057 p_vci_ini_d.cons = (r_vci_cmd_fsm.read() == CMD_DATA_CAS);5058 p_vci_ini_d.contig = not (r_vci_cmd_fsm.read() == CMD_DATA_CAS);5060 p_vci_ini_d.cons = is_sc_or_cas; 5061 p_vci_ini_d.contig = not is_sc_or_cas; 5059 5062 p_vci_ini_d.wrap = false; 5060 5063 p_vci_ini_d.clen = 0;
Note: See TracChangeset
for help on using the changeset viewer.