Ignore:
Timestamp:
Jul 18, 2013, 5:54:32 PM (11 years ago)
Author:
alain
Message:

Fixing several bugs in the configuration interface.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/vci_mem_cache/caba/source/include/vci_mem_cache.h

    r439 r449  
    6868    {
    6969      typedef typename vci_param_int::fast_addr_t  addr_t;
    70 
    7170      typedef typename sc_dt::sc_uint<64>          wide_data_t;
    72 
    73       typedef uint32_t data_t;
    74       typedef uint32_t tag_t;
    75       typedef uint32_t be_t;
    76       typedef uint32_t copy_t;
     71      typedef uint32_t                             data_t;
     72      typedef uint32_t                             tag_t;
     73      typedef uint32_t                             be_t;
     74      typedef uint32_t                             copy_t;
    7775
    7876      /* States of the TGT_CMD fsm */
     
    390388
    391389      // debug variables (for each FSM)
    392       bool         m_debug;
    393       bool         m_debug_previous_hit;
    394       size_t       m_debug_previous_count;
     390      bool                 m_debug;
     391      bool                 m_debug_previous_valid;
     392      size_t               m_debug_previous_count;
     393      bool                 m_debug_previous_dirty;
     394      sc_signal<data_t>*   m_debug_previous_data;
     395      sc_signal<data_t>*   m_debug_data;
    395396
    396397      bool         m_monitor_ok;
     
    474475      void print_stats();
    475476      void print_trace();
    476       void copies_monitor(addr_t addr);
     477      void cache_monitor(addr_t addr);
    477478      void start_monitor(addr_t addr, addr_t length);
    478479      void stop_monitor();
     
    482483      void transition();
    483484      void genMoore();
    484       void check_monitor( const char *buf, addr_t addr, data_t data, bool read);
     485      void check_monitor(addr_t addr, data_t data, bool read);
    485486
    486487      // Component attributes
Note: See TracChangeset for help on using the changeset viewer.