Changes between Version 11 and Version 12 of Writing Rules/Tlmt
- Timestamp:
- Dec 26, 2007, 1:07:18 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Writing Rules/Tlmt
v11 v12 24 24 The 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. 25 25 26 = C) Initiator Modeling =26 = C) VCI initiator Modeling = 27 27 28 28 In 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. … … 161 161 }}} 162 162 163 = D) Target Modeling =163 = D) VCI target modeling = 164 164 165 165 In 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.