Changeset 66 for trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Timestamp:
- Dec 6, 2007, 11:03:00 AM (17 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces_testbench_generate_file.cpp
r44 r66 42 42 vhdl->set_body("instance_"+_name+" : "+_name); 43 43 vhdl->set_body("port map ("); 44 44 45 45 list<string>::iterator i = list_signal->begin(); 46 46 if (i != list_signal->end()) … … 101 101 vhdl->set_body("end process;"); 102 102 103 104 103 vhdl->generate_file(false,true); 105 104 -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Signal_connect.cpp
r62 r66 53 53 } 54 54 else 55 #ifdef SYSTEMCASS_SPECIFIC 55 56 if ((_direction == OUT) and (signal_dest->_direction == IN )) 56 57 switch (_type_info) … … 64 65 } 65 66 else 67 #endif 66 68 if ((_direction == OUT) and (signal_dest->_direction == OUT)) 67 69 switch (_type_info) -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_std_logic.cpp
r57 r66 53 53 { 54 54 log_printf(FUNC,Behavioural,FUNCTION,"Begin"); 55 cout << toString(value) << endl; 55 56 string _return = std_logic_conv(size,toString(value)); 56 57 log_printf(FUNC,Behavioural,FUNCTION,"End");
Note: See TracChangeset
for help on using the changeset viewer.