Changeset 109 for trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic
- Timestamp:
- Feb 16, 2009, 9:28:31 PM (16 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Queue/src/Queue_allocation.cpp
r101 r109 67 67 // ~~~~~[ Interface "slot" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 68 68 { 69 ALLOC1_INTERFACE("slot", OUT, EAST, _("Internal slot."),_param->_nb_port_slot);69 ALLOC1_INTERFACE("slot", OUT, NORTH, _("Internal slot."),_param->_nb_port_slot); 70 70 71 71 ALLOC1_VALACK_OUT(out_SLOT_VAL ,VAL); … … 76 76 if (_param->_have_port_ptr) 77 77 { 78 ALLOC0_INTERFACE("ptr", OUT, EAST, _("Internal pointer."));78 ALLOC0_INTERFACE("ptr", OUT, SOUTH, _("Internal pointer.")); 79 79 80 80 if (_param->_have_port_ptr_write) -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/src/RegisterFile_Monolithic_allocation.cpp
r88 r109 2 2 * $Id$ 3 3 * 4 * [ 4 * [ Description ] 5 5 * 6 6 */ … … 27 27 _interfaces = entity->set_interfaces(); 28 28 29 // ~~~~~[ 29 // ~~~~~[ Interface : "" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 30 30 { 31 31 Interface * interface = _interfaces->set_interface("" … … 40 40 in_NRESET = interface->set_signal_in <Tcontrol_t> ("nreset",1, RESET_VHDL_YES); 41 41 } 42 // ~~~~~[ 42 // ~~~~~[ Interface : "read" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 43 43 44 44 in_READ_VAL = new SC_IN (Tcontrol_t) * [_param->_nb_port_read]; … … 65 65 } 66 66 67 // ~~~~~[ 67 // ~~~~~[ Interface : "write" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 68 68 69 69 in_WRITE_VAL = new SC_IN (Tcontrol_t) * [_param->_nb_port_write]; … … 90 90 } 91 91 92 // ~~~~~[ 92 // ~~~~~[ Interface : "read_write" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 93 93 94 94 in_READ_WRITE_VAL = new SC_IN (Tcontrol_t) * [_param->_nb_port_read_write];
Note: See TracChangeset
for help on using the changeset viewer.