Changes between Version 117 and Version 118 of Writing Rules/Tlmt


Ignore:
Timestamp:
Mar 3, 2009, 9:43:31 AM (15 years ago)
Author:
alinevieiramello@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Writing Rules/Tlmt

    v117 v118  
    123123{{{
    124124  tlm::tlm_generic_payload *payload_ptr = new tlm::tlm_generic_payload();
    125   tlm::tlm_phase            phase;
    126125  soclib_payload_extension *extension_ptr = new soclib_payload_extension();
    127   sc_core::sc_time          send_time;
    128126  ...
    129 
    130127  // set the values in tlm payload
    131128  payload_ptr->set_command(tlm::TLM_IGNORE_COMMAND);
     
    142139  // set the extension to tlm payload
    143140  payload_ptr->set_extension (extension_ptr );
    144   // set the tlm phase
    145   phase = tlm::BEGIN_REQ;
    146   // set the local time to transaction time
    147   send_time = m_local_time;
    148 
     141  ...
    149142}}}
    150143