Changeset 43 for trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic
- Timestamp:
- Jul 9, 2007, 11:04:26 AM (17 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic
- Files:
-
- 7 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Counter/src/Counter_vhdl.cpp
r42 r43 19 19 { 20 20 log_printf(FUNC,Counter,"vhdl","Begin"); 21 21 22 Vhdl * vhdl = new Vhdl (_name); 22 23 23 vhdl->set_library_work (_name + "_Pack"); 24 _interfaces->set_port (vhdl); 25 _component ->vhdl_instance(vhdl); 24 26 25 vhdl_port (vhdl);26 27 vhdl_declaration (vhdl); 27 28 vhdl_body (vhdl); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/RegisterFile_Monolithic.h
r42 r43 114 114 #if VHDL 115 115 private : void vhdl (void); 116 private : void vhdl_port (Vhdl * & vhdl); 117 private : void vhdl_type (Vhdl * & vhdl); 118 private : void vhdl_signal (Vhdl * & vhdl); 116 private : void vhdl_declaration (Vhdl * & vhdl); 119 117 private : void vhdl_body (Vhdl * & vhdl); 120 118 #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/src/RegisterFile_Monolithic_vhdl.cpp
r41 r43 20 20 Vhdl * vhdl = new Vhdl (_name); 21 21 22 vhdl->set_library_work (_name + "_Pack"); 22 _interfaces->set_port (vhdl); 23 _component ->vhdl_instance(vhdl); 23 24 24 vhdl_port (vhdl); 25 vhdl_type (vhdl); 26 vhdl_signal (vhdl); 27 vhdl_body (vhdl); 25 vhdl_declaration (vhdl); 26 vhdl_body (vhdl); 28 27 29 28 vhdl->generate_file(); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/include/Select_Priority_Fixed.h
r42 r43 110 110 #if VHDL 111 111 public : void vhdl (void); 112 private : void vhdl_port (Vhdl * & vhdl);113 112 private : void vhdl_declaration (Vhdl * & vhdl); 114 113 private : void vhdl_body (Vhdl * & vhdl); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/src/Select_Priority_Fixed_vhdl.cpp
r40 r43 23 23 Vhdl * vhdl = new Vhdl (_name); 24 24 25 vhdl->set_library_work (_name + "_Pack"); 25 _interfaces->set_port (vhdl); 26 _component ->vhdl_instance(vhdl); 26 27 27 vhdl_port (vhdl);28 28 vhdl_declaration (vhdl); 29 29 vhdl_body (vhdl); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Shifter/include/Shifter.h
r42 r43 103 103 #if VHDL 104 104 public : void vhdl (void); 105 private : void vhdl_port (Vhdl * & vhdl);106 105 private : void vhdl_declaration (Vhdl * & vhdl); 107 106 private : void vhdl_body (Vhdl * & vhdl); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Shifter/src/Shifter_vhdl.cpp
r42 r43 20 20 Vhdl * vhdl = new Vhdl (_name); 21 21 22 vhdl->set_library_work (_name + "_Pack"); 22 _interfaces->set_port (vhdl); 23 _component ->vhdl_instance(vhdl); 23 24 24 vhdl_port (vhdl);25 25 vhdl_declaration (vhdl); 26 26 vhdl_body (vhdl); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Victim_Pseudo_LRU.h
r42 r43 240 240 #if VHDL 241 241 public : void vhdl (void); 242 private : void vhdl_port (Vhdl * & vhdl);243 242 private : void vhdl_declaration (Vhdl * & vhdl); 244 243 private : void vhdl_body (Vhdl * & vhdl); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/src/Victim_Pseudo_LRU_vhdl.cpp
r42 r43 21 21 log_printf(FUNC,Victim_Pseudo_LRU,"vhdl","Begin"); 22 22 23 log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Construction of vhdl");24 23 Vhdl * vhdl = new Vhdl (_name); 25 24 26 log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set library");27 vhdl->set_library_work (_name + "_Pack");25 _interfaces->set_port (vhdl); 26 _component ->vhdl_instance(vhdl); 28 27 29 log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set port");30 vhdl_port (vhdl);31 log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set declaration");32 28 vhdl_declaration (vhdl); 33 log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set body");34 29 vhdl_body (vhdl); 35 log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Generate File"); 30 36 31 vhdl->generate_file(); 37 32 38 33 delete vhdl; 34 39 35 log_printf(FUNC,Victim_Pseudo_LRU,"vhdl","End"); 40 36 };
Note: See TracChangeset
for help on using the changeset viewer.