Changeset 58 for trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Timestamp:
- Oct 1, 2007, 1:36:39 PM (17 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Component_vhdl_instance.cpp
r57 r58 22 22 23 23 // buffer all output 24 24 25 { 25 vhdl->set_body ("------------------------------------------------------");26 vhdl->set_body ("-- Output's Buffer");27 vhdl->set_body ("------------------------------------------------------");28 29 26 // for each interface 30 27 list<Interface_fifo *> * list_interface = (_entity)->get_interfaces_list()->get_interface_list(); … … 32 29 if (not list_interface->empty()) 33 30 { 31 vhdl->set_body ("------------------------------------------------------"); 32 vhdl->set_body ("-- Output's Buffer"); 33 vhdl->set_body ("------------------------------------------------------"); 34 34 35 while (j != list_interface->end()) 35 36 { … … 66 67 ++j; 67 68 } 69 vhdl->set_body (""); 70 vhdl->set_body ("------------------------------------------------------"); 71 vhdl->set_body (""); 68 72 } 69 vhdl->set_body ("");70 vhdl->set_body ("------------------------------------------------------");71 vhdl->set_body ("");72 73 } 73 74 -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces.cpp
r57 r58 35 35 36 36 #ifdef VHDL_TESTBENCH 37 testbench_generate_file (); 37 if (_usage & USE_VHDL_TESTBENCH) 38 testbench_generate_file (); 38 39 #endif 39 40
Note: See TracChangeset
for help on using the changeset viewer.