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

Location:
trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Icache_Access/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Icache_Access/src/Icache_Access.cpp

    r123 r132  
    9797        SC_METHOD (genMealy_req);
    9898        dont_initialize ();
    99         sensitive << (*(in_CLOCK)).neg(); // need internal register
     99        sensitive << (*(in_CLOCK)).neg() // need internal register
     100                  << (*(in_NRESET));
    100101
    101102        for (uint32_t i=0; i<_param->_nb_icache_port; ++i)
     
    153154        SC_METHOD (genMealy_rsp);
    154155        dont_initialize ();
    155         sensitive << (*(in_CLOCK)).neg(); // need internal register
     156        sensitive << (*(in_CLOCK)).neg() // need internal register
     157                  << (*(in_NRESET));
     158
    156159        for (uint32_t i=0; i<_param->_nb_icache_port; ++i)
    157160          {
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Icache_Access/src/Icache_Access_genMealy_rsp.cpp

    r124 r132  
    7070
    7171            ack = PORT_READ(in_CONTEXT_RSP_ACK [front_end_id][context_id]);
     72
     73            log_printf(TRACE,Icache_Access,FUNCTION,"    * context_rsp_ack: %d",ack);
    7274           
    7375            context_rsp_val [front_end_id][context_id] = 1;
Note: See TracChangeset for help on using the changeset viewer.