Changeset 122 for trunk/modules/vci_synthetic_initator/caba/sources/include
- Timestamp:
- Dec 23, 2010, 3:31:25 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/vci_synthetic_initator/caba/sources/include/vci_synthetic_initiator.h
r115 r122 26 26 * 27 27 * Maintainers: christophe.choichillon@lip6.fr 28 */ 29 /* 30 TODO : Adding the broadcast latency 28 31 */ 29 32 … … 64 67 VCI_BC_RECEIVE 65 68 }; 66 enum gen_fsm_state_e{67 68 69 };69 // enum gen_fsm_state_e{ 70 // A_IDLE, 71 // A_DATA 72 // }; 70 73 71 uint 32_t m_cpt_cycles; // Counter of cycles74 uint64_t m_cpt_cycles; // Counter of cycles 72 75 73 76 … … 132 135 uint64_t m_start_latency1; // Start time of sending packet wanted 133 136 uint64_t m_start_latency2; // Start time of sending packet 134 // float m_rhos; // Effective Rho during the simulation 137 uint64_t m_latency1; // Average latency wanted 138 uint64_t m_latency2; // Average latency 135 139 size_t m_bc_nrsp; // Expected number of responses for a broadcast command 136 140 addr_t m_address_to_send; // Address to send the write command 137 141 uint32_t m_local_seed; 138 142 143 uint64_t m_start_latency_bc; 144 uint64_t m_latency_bc; 145 uint64_t m_nb_bc; 146 139 147 // Fifo transmitting date to the VCI FSM 140 148 GenericFifo<uint32_t> m_date_fifo; 141 149 150 //sc_signal<int> r_cmd_fsm; 142 151 sc_signal<int> r_vci_fsm; 152 153 sc_signal<int> r_bc_rsp_fsm; 143 154 144 155 sc_signal<size_t> r_index;
Note: See TracChangeset
for help on using the changeset viewer.