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

File:
1 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      {                                                                 \
Note: See TracChangeset for help on using the changeset viewer.