Changes between Version 11 and Version 12 of Writing Rules/Tlmt


Ignore:
Timestamp:
Dec 26, 2007, 1:07:18 AM (16 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Writing Rules/Tlmt

    v11 v12  
    2424The VCI communication channel is a point-to-point bi-directionnal channel, encapsulating two separated uni-directionnal channels : one to transmit the VCI command packet, one to transmit the VCI response packet.
    2525
    26 = C) Initiator Modeling =
     26= C) VCI initiator Modeling =
    2727
    2828In the proposed example, the initiator module is modeled by the '''my_initiator''' class. This class inherit the '''!BaseModule''' class, that is the basis for all TLM-T modules. As there is only one thread in this module, there is only one member variable '''time''' of type '''tlmt_time'''. This object can be accessed through the '''getTime()''', '''addTime()''' and '''setTime()''' methods.
     
    161161}}}
    162162
    163 = D) Target Modeling =
     163= D) VCI target modeling =
    164164
    165165In the proposed example, the target handle two types of command : a read burst of 8 words, and a write burst of 8 words. To simplify the model, there is no error management.