Changes between Version 15 and Version 16 of Writing Rules/Caba


Ignore:
Timestamp:
Apr 3, 2007, 1:12:51 PM (17 years ago)
Author:
Nicolas Pouillon
Comment:

Component instanciation

Legend:

Unmodified
Added
Removed
Modified
  • Writing Rules/Caba

    v15 v16  
    430430    p_vci.cmdack = (r_vci_fsm == IDLE);
    431431}
    432 
    433432}}
    434 }}}
     433
     434}}}
     435
     436Component instanciation could be (`template_inst.cc`):
     437{{{
     438#include "caba/target/vci_locks.cc"
     439template class soclib::caba::VciLocks<soclib::caba::VciParams<4,1,32,1,1,1,8,1,1,1> >;
     440}}}
     441
     442Command line:
     443{{{
     444g++ -c -o obj.o -I/path/to/soclib/systemc/src -I/path/to/soclib/systemc/include template_inst.cc -I/path/to/systemc $(OTHER_CFLAGS)
     445}}}