Changes between Version 15 and Version 16 of Writing Rules/Caba
- Timestamp:
- Apr 3, 2007, 1:12:51 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Writing Rules/Caba
v15 v16 430 430 p_vci.cmdack = (r_vci_fsm == IDLE); 431 431 } 432 433 432 }} 434 }}} 433 434 }}} 435 436 Component instanciation could be (`template_inst.cc`): 437 {{{ 438 #include "caba/target/vci_locks.cc" 439 template class soclib::caba::VciLocks<soclib::caba::VciParams<4,1,32,1,1,1,8,1,1,1> >; 440 }}} 441 442 Command line: 443 {{{ 444 g++ -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 }}}