Ignore:
Timestamp:
Jun 26, 2013, 5:08:11 PM (11 years ago)
Author:
alain
Message:

Bug fix: the r_dcache_vci_unc_be register was declared as bool. Changed to uint32_t

Location:
trunk/modules/vci_cc_vcache_wrapper/caba/source
Files:
2 edited

Legend:

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

    r394 r421  
    415415    sc_signal<bool>         r_dcache_vci_miss_req;      // read miss request
    416416    sc_signal<bool>         r_dcache_vci_unc_req;       // uncacheable read request
    417     sc_signal<bool>         r_dcache_vci_unc_be;        // uncacheable read byte enable
     417    sc_signal<uint32_t>     r_dcache_vci_unc_be;        // uncacheable read byte enable
    418418    sc_signal<bool>         r_dcache_vci_cas_req;       // atomic write request CAS
    419419    sc_signal<uint32_t>     r_dcache_vci_cas_old;       // previous data value for a CAS
  • trunk/modules/vci_cc_vcache_wrapper/caba/source/src/vci_cc_vcache_wrapper.cpp

    r403 r421  
    380380      r_dtlb("dtlb", proc_id, dtlb_ways,dtlb_sets,vci_param::N)
    381381{
     382    std::cout << "  - Building VciCcVcacheWrapper : " << name << std::endl;
     383
    382384    assert( ((icache_words*vci_param::B) < (1<<vci_param::K)) and
    383385             "Need more PLEN bits.");
Note: See TracChangeset for help on using the changeset viewer.