Changeset 13


Ignore:
Timestamp:
Apr 8, 2010, 2:27:14 PM (14 years ago)
Author:
bouyer
Message:

Fix build with systemcass (add .read() on register access)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/vci_cc_vcache_wrapper2_v1/caba/source/src/vci_cc_vcache_wrapper2_v1.cpp

    r12 r13  
    20102010        else if (((r_icache_fsm_save == ICACHE_BIS)||(r_icache_fsm_save == ICACHE_MISS_WAIT) ||
    20112011               /* (r_icache_fsm_save == ICACHE_UNC_WAIT)||*/(r_icache_fsm_save == ICACHE_MISS_UPDT)) &&
    2012                 (r_icache_tlb_nline == r_dcache_itlb_inval_line))
     2012                (r_icache_tlb_nline.read() == r_dcache_itlb_inval_line.read()))
    20132013        {
    20142014            r_icache_inval_tlb_rsp = true;
     
    48394839        if (((r_dcache_fsm_save == DCACHE_BIS)||(r_dcache_fsm_save == DCACHE_MISS_WAIT) ||
    48404840             (r_dcache_fsm_save == DCACHE_UNC_WAIT)||(r_dcache_fsm_save == DCACHE_MISS_UPDT)) &&
    4841              (r_dcache_tlb_nline == r_dcache_dtlb_inval_line))
     4841             (r_dcache_tlb_nline.read() == r_dcache_dtlb_inval_line.read()))
    48424842        {
    48434843            r_dcache_inval_tlb_rsp = true;
Note: See TracChangeset for help on using the changeset viewer.