Ignore:
Timestamp:
Mar 20, 2013, 10:55:39 AM (11 years ago)
Author:
joannou
Message:
  • Commented debug in dspin_local_ring_fast_c
  • Added test on plen value in case of LL command in mem cache (vci_mem_cache and vci_mem_cache_dspin_coherence)
  • Removed coherence handling in *CACHE_MISS_DATA_UPDT states, in vci_cc_vcache_wrapper_dspin_coherence component
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/v5/modules/vci_mem_cache_dspin_coherence/caba/source/src/vci_mem_cache.cpp

    r328 r330  
    980980        exit(0);
    981981      }
     982      if((p_vci_tgt.cmd.read() == vci_param::CMD_LOCKED_READ) && (p_vci_tgt.plen.read() != 8))
     983      {
     984        std::cout
     985            << "VCI_MEM_CACHE ERROR " << name() << " TGT_CMD_READ state"
     986            << std::endl;
     987        std::cout
     988            << " ll command packets must have a plen of 8"
     989            << std::endl;
     990        exit(0);
     991      }
    982992
    983993      if(p_vci_tgt.cmdval && m_cmd_read_addr_fifo.wok())
Note: See TracChangeset for help on using the changeset viewer.