Ignore:
Timestamp:
Jun 5, 2007, 11:06:46 PM (17 years ago)
Author:
rosiere
Message:

Interface et Signal, c'est deux classes enregistres la valeurs des signaux à chaque cycle ... étape préparatoire avan le changement de la classe Vhdl_Testbench

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/src/Select_Priority_Fixed_deallocation.cpp

    r31 r40  
    2020    log_printf(FUNC,Select_Priority_Fixed,"deallocation","Begin");
    2121
    22     delete in_CLOCK;
    23     delete in_NRESET;
     22    delete     in_CLOCK;
     23    delete     in_NRESET;
    2424
    25     for (uint32_t i=0; i<_param._nb_entity; i++)
    26       {
    27         delete  in_VAL [i];
    28         if (_param._encoding_one_hot)
    29         delete out_ACK [i];
    30       }
     25    delete []  in_VAL;
     26    if (_param._encoding_one_hot)
     27    delete [] out_ACK;
    3128
    32     delete  in_VAL;
    33     if (_param._encoding_one_hot)
    34     delete out_ACK;
    3529    if (_param._encoding_compact)
    3630      {
    37     delete out_ENTITY;
    38     delete out_ENTITY_ACK;
     31    delete    out_ENTITY;
     32    delete    out_ENTITY_ACK;
    3933      }
    4034    // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   
     35
     36    cout << *_interfaces << endl;
    4137
    4238#ifdef POSITION
Note: See TracChangeset for help on using the changeset viewer.