Changeset 133 for trunk/IPs/systemC/processor
- Timestamp:
- Jul 13, 2009, 5:19:10 PM (15 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo
- Files:
-
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/Configuration/SelfTest/src/test.cpp
r131 r133 56 56 configuration1->toFile("data_out"); 57 57 58 if (1) 58 59 { 59 60 cout << "------------------------------------------------------" << endl; 60 61 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_1.cfg", 62 generator1, 63 _get_custom_information 64 ); 65 instance->toFile("data_out"); 66 61 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_01.cfg", generator1, _get_custom_information); 67 62 delete instance; 68 63 } 69 64 65 if (1) 70 66 { 71 67 cout << "------------------------------------------------------" << endl; 72 73 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_2.cfg", 74 generator1, 75 _get_custom_information 76 ); 77 instance->toFile("data_out"); 78 68 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_02.cfg", generator1, _get_custom_information); 79 69 delete instance; 80 70 } 81 71 72 if (1) 73 { 74 cout << "------------------------------------------------------" << endl; 75 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_03.cfg", generator1, _get_custom_information); 76 delete instance; 77 } 78 79 80 if (0) 81 { 82 cout << "------------------------------------------------------" << endl; 83 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_04.cfg", generator1, _get_custom_information); 84 delete instance; 85 } 86 87 if (1) 88 { 89 cout << "------------------------------------------------------" << endl; 90 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_05.cfg", generator1, _get_custom_information); 91 delete instance; 92 } 93 94 if (0) 95 { 96 cout << "------------------------------------------------------" << endl; 97 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_06.cfg", generator1, _get_custom_information); 98 delete instance; 99 } 100 101 if (0) 102 { 103 cout << "------------------------------------------------------" << endl; 104 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_07.cfg", generator1, _get_custom_information); 105 delete instance; 106 } 107 108 if (0) 109 { 110 cout << "------------------------------------------------------" << endl; 111 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_08.cfg", generator1, _get_custom_information); 112 delete instance; 113 } 114 115 if (0) 116 { 117 cout << "------------------------------------------------------" << endl; 118 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_09.cfg", generator1, _get_custom_information); 119 delete instance; 120 } 121 122 if (0) 123 { 124 cout << "------------------------------------------------------" << endl; 125 Instance * instance = new Instance ("../../../Files/Instance_x4_w8_10.cfg", generator1, _get_custom_information); 126 delete instance; 127 } 82 128 83 129 delete configuration1; -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Write_queue/src/Write_queue_genMoore.cpp
r123 r133 133 133 // Reset 134 134 internal_WRITE_QUEUE_IN_ACK = 0; 135 if (_param->_queue_scheme == WRITE_QUEUE_SCHEME_MOORE) 136 { 135 137 internal_WRITE_QUEUE_OUT_VAL = 0; 136 138 internal_GPR_WRITE_VAL = 0; 137 139 internal_SPR_WRITE_VAL = 0; 138 140 } 139 141 } 140 142 141 143 // Write output 142 144 PORT_WRITE(out_WRITE_QUEUE_IN_ACK , internal_WRITE_QUEUE_IN_ACK); 145 146 if (_param->_queue_scheme == WRITE_QUEUE_SCHEME_MOORE) 147 { 143 148 PORT_WRITE(out_WRITE_QUEUE_OUT_VAL, internal_WRITE_QUEUE_OUT_VAL); 144 145 149 PORT_WRITE(out_GPR_WRITE_VAL [0] , internal_GPR_WRITE_VAL); 146 150 PORT_WRITE(out_SPR_WRITE_VAL [0] , internal_SPR_WRITE_VAL); 151 } 147 152 148 153 log_end(Write_queue,FUNCTION); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Commit_unit/src/Commit_unit_genMealy_retire.cpp
r128 r133 57 57 spr_write_sr_ov_val [i][j] = 0; 58 58 59 spr_write_sr_f [i][j] = 0; // not necessary 60 spr_write_sr_cy [i][j] = 0; // not necessary 61 spr_write_sr_ov [i][j] = 0; // not necessary 59 62 } 60 63 -
trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Version.h
r132 r133 10 10 #define MORPHEO_MAJOR_VERSION "0" 11 11 #define MORPHEO_MINOR_VERSION "2" 12 #define MORPHEO_REVISION "13 2"12 #define MORPHEO_REVISION "133" 13 13 #define MORPHEO_CODENAME "Castor" 14 14 15 #define MORPHEO_DATE_DAY "1 1"15 #define MORPHEO_DATE_DAY "13" 16 16 #define MORPHEO_DATE_MONTH "07" 17 17 #define MORPHEO_DATE_YEAR "2009"
Note: See TracChangeset
for help on using the changeset viewer.