Ignore:
Timestamp:
Sep 2, 2010, 2:27:44 PM (14 years ago)
Author:
guthmull
Message:

Fix the masking of RERROR field

File:
1 edited

Legend:

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

    r82 r83  
    42494249        p_vci_tgt.rtrdid   = r_write_to_tgt_rsp_trdid.read();
    42504250        p_vci_tgt.rpktid   = r_write_to_tgt_rsp_pktid.read();
    4251         p_vci_tgt.rerror   = 0x2 & ( (1 << (vci_param::E + 1)) - 1); // Write OK
     4251        p_vci_tgt.rerror   = 0x2 & ( (1 << vci_param::E) - 1); // Write OK
    42524252        p_vci_tgt.reop     = true;
    42534253        break;
     
    45094509          p_vci_tgt_cleanup.rpktid = r_cleanup_pktid.read();
    45104510          p_vci_tgt_cleanup.rtrdid = r_cleanup_trdid.read();
    4511           p_vci_tgt_cleanup.rerror = 0x2 & ( (1 << (vci_param::E + 1)) - 1);
     4511          p_vci_tgt_cleanup.rerror = 0x2 & ( (1 << vci_param::E) - 1);
    45124512          p_vci_tgt_cleanup.reop   = 1;
    45134513          break;
Note: See TracChangeset for help on using the changeset viewer.