Ignore:
Timestamp:
Apr 20, 2009, 11:29:17 PM (15 years ago)
Author:
rosiere
Message:

1) Write queue with mealy
2) Network : fix bug
3) leak memory

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  
    252252#define ALLOC1_INTERFACE_BEGIN( name, direction, localisation, str, x1)       \
    253253  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]; \
    258260    for (uint32_t it1=0; it1<iterator_1; it1++)                         \
    259261      {                                                                 \
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Component.h

    r113 r115  
    2525namespace behavioural          {
    2626
     27  /*
    2728#ifdef DEBUG
    2829# define PORT_MAP(x,a,b,c,d)                                            \
     
    4041  while (0)
    4142#else
     43*/
    4244# define PORT_MAP(x,a,b,c,d)                                            \
    4345  do                                                                    \
     
    4648    }                                                                   \
    4749  while (0)
    48 #endif
     50// #endif
    4951
    5052#define COMPONENT_MAP(x,a,b,c,d)                                        \
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Version.h

    r114 r115  
    1010#define MORPHEO_MAJOR_VERSION "0"
    1111#define MORPHEO_MINOR_VERSION "2"
    12 #define MORPHEO_REVISION      "114"
     12#define MORPHEO_REVISION      "115"
    1313#define MORPHEO_CODENAME      "Castor"
    1414
    15 #define MORPHEO_DATE_DAY      "17
     15#define MORPHEO_DATE_DAY      "20
    1616#define MORPHEO_DATE_MONTH    "04"
    1717#define MORPHEO_DATE_YEAR     "2009"
Note: See TracChangeset for help on using the changeset viewer.