Changeset 66 for trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic
- Timestamp:
- Dec 6, 2007, 11:03:00 AM (17 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/src/RegisterFile_Monolithic.cpp
r62 r66 52 52 SC_METHOD (transition); 53 53 dont_initialize (); 54 sensitive _pos << *(in_CLOCK);54 sensitive << (*(in_CLOCK)).pos(); 55 55 56 56 SC_METHOD (genMealy_read); 57 57 dont_initialize (); 58 sensitive _neg << *(in_CLOCK);58 sensitive << (*(in_CLOCK)).neg(); 59 59 for (uint32_t i=0; i<_param->_nb_port_read; i++) 60 60 { -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Shifter/src/Shifter.cpp
r42 r66 46 46 SC_METHOD (transition); 47 47 dont_initialize (); 48 sensitive _pos << *(in_CLOCK);48 sensitive << (*(in_CLOCK)).pos(); 49 49 #endif 50 50 51 51 SC_METHOD (genMealy_shift); 52 52 dont_initialize (); 53 sensitive _neg << *(in_CLOCK);53 sensitive << (*(in_CLOCK)).neg(); 54 54 for (uint32_t i=0; i<param._nb_port; i++) 55 55 { -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/src/Victim_Pseudo_LRU.cpp
r42 r66 52 52 SC_METHOD (transition); 53 53 dont_initialize (); 54 sensitive _pos << *(in_CLOCK);54 sensitive << (*(in_CLOCK)).pos(); 55 55 56 56 SC_METHOD (genMealy_access); 57 57 dont_initialize (); 58 sensitive _neg << *(in_CLOCK);58 sensitive << (*(in_CLOCK)).neg(); 59 59 for (uint32_t i=0; i<_param._nb_access; i++) 60 60 {
Note: See TracChangeset
for help on using the changeset viewer.