Changes between Version 1 and Version 2 of Component/Vci Sim Helper


Ignore:
Timestamp:
Feb 25, 2010, 5:15:56 PM (14 years ago)
Author:
alinevieiramello@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Component/Vci Sim Helper

    v1 v2  
    6060 * sc_in<bool> '''p_clk''' : Global system clock
    6161 * soclib::common::!VciTarget<vci_param> '''p_vci''' : The VCI port
     62
     63== 4) TLM-DT  Implementation ==
     64 
     65=== TLM-DT sources ===
     66 
     67 * interface : source:trunk/soclib/soclib/module/verification_component/vci_simhelper/tlmdt/source/include/vci_simhelper.h
     68 * implementation : source:trunk/soclib/soclib/module/verification_component/vci_simhelper/tlmdt/source/src/vci_simhelper.cpp
     69
     70
     71=== TLM-DT Constructor parameters ===
     72
     73{{{
     74VciSimhelper(
     75     sc_module_name name,   // Instance name
     76     const soclib::common::IntTab &index,   //  Target index
     77     const soclib::common::MappingTable &mt)   // Mapping Table
     78}}}
     79
     80Example instanciation:
     81{{{
     82VciSimhelper simhelper("simhelper",
     83               IntTab(2,3),
     84               mapping_table );
     85}}}
     86
     87=== TLM-DT Ports ===
     88
     89 * '''p_vci''' : The VCI target port
     90