Changeset 115 for trunk/IPs/systemC/processor/Morpheo/Behavioural/include
- Timestamp:
- Apr 20, 2009, 11:29:17 PM (16 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Allocation.h
r113 r115 252 252 #define ALLOC1_INTERFACE_BEGIN( name, direction, localisation, str, x1) \ 253 253 INTERFACE_PRINT(name); \ 254 const uint32_t iterator_1 = x1; \ 255 morpheo::behavioural::Interface_fifo * interface [iterator_1]; \ 256 { \ 257 std::string separator="_"; \ 254 uint32_t iterator_1 = 0; \ 255 morpheo::behavioural::Interface_fifo ** interface; \ 256 { \ 257 std::string separator="_"; \ 258 iterator_1 = x1; \ 259 interface = new morpheo::behavioural::Interface_fifo * [iterator_1]; \ 258 260 for (uint32_t it1=0; it1<iterator_1; it1++) \ 259 261 { \ -
trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Component.h
r113 r115 25 25 namespace behavioural { 26 26 27 /* 27 28 #ifdef DEBUG 28 29 # define PORT_MAP(x,a,b,c,d) \ … … 40 41 while (0) 41 42 #else 43 */ 42 44 # define PORT_MAP(x,a,b,c,d) \ 43 45 do \ … … 46 48 } \ 47 49 while (0) 48 #endif50 // #endif 49 51 50 52 #define COMPONENT_MAP(x,a,b,c,d) \ -
trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Version.h
r114 r115 10 10 #define MORPHEO_MAJOR_VERSION "0" 11 11 #define MORPHEO_MINOR_VERSION "2" 12 #define MORPHEO_REVISION "11 4"12 #define MORPHEO_REVISION "115" 13 13 #define MORPHEO_CODENAME "Castor" 14 14 15 #define MORPHEO_DATE_DAY " 17"15 #define MORPHEO_DATE_DAY "20" 16 16 #define MORPHEO_DATE_MONTH "04" 17 17 #define MORPHEO_DATE_YEAR "2009"
Note: See TracChangeset
for help on using the changeset viewer.