Ignore:
Timestamp:
Jul 11, 2009, 6:39:35 PM (15 years ago)
Author:
rosiere
Message:

1) add constant method - compatibility with SystemC
2) add Script to test sensitive list
3) fix bug in sensitive list

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Network/Read_unit_to_Execution_unit/src/Read_unit_to_Execution_unit.cpp

    r123 r132  
    8888        SC_METHOD (genMealy);
    8989        dont_initialize ();
    90         sensitive << (*(in_CLOCK)).neg();
     90        sensitive << (*(in_CLOCK)).neg()
     91                  << (*(in_NRESET));
    9192
    9293        for (uint32_t i=0; i<_param->_nb_read_unit; i++)
     
    105106                        << (*(in_READ_UNIT_OUT_WRITE_RE              [i][j]))
    106107                        << (*(in_READ_UNIT_OUT_NUM_REG_RE            [i][j]))
    107                         << (*(in_READ_UNIT_OUT_STORE_QUEUE_PTR_WRITE [i][j]));
     108                        << (*(in_READ_UNIT_OUT_STORE_QUEUE_PTR_WRITE [i][j]))
     109                        << (*(in_READ_UNIT_OUT_STORE_QUEUE_PTR_READ  [i][j]))
     110                        << (*(in_READ_UNIT_OUT_STORE_QUEUE_EMPTY     [i][j]));
    108111
    109112              if (_param->_have_port_load_queue_ptr)
Note: See TracChangeset for help on using the changeset viewer.