Changes between Version 76 and Version 77 of Writing Rules/Tlmt
- Timestamp:
- Nov 16, 2008, 1:19:48 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Writing Rules/Tlmt
v76 v77 58 58 // TLM2.0 related fields and common structure 59 59 60 sc_dt::uint64 m_address; // address61 unsigned char* m_data; // data buffer62 unsigned int m_length; // number of bytes63 tlm_response_status m_response_status; // rerror64 unsigned char* m_byte_enable; // be buffer65 unsigned int m_streaming_width; //60 sc_dt::uint64 m_address; 61 unsigned char* m_data; 62 unsigned int m_length; 63 tlm_response_status m_response_status; 64 unsigned char* m_byte_enable; 65 unsigned int m_streaming_width; 66 66 67 67 // TLM-T related fields … … 72 72 // VCI related fields 73 73 74 vci_command m_command; // cmd 75 unsigned int m_src_id; // srcid 76 unsigned int m_trd_id; // trdid 77 unsigned int m_pkt_id; // pktid 74 vci_param::cmd_t m_cmd; 75 vci_param::srcid_t m_srcid; 76 vci_param::trdid_t m_trdid; 77 vci_param::pktid_t m_pktid; 78 78 79 }}} 79 80