Changeset 617 for trunk/modules


Ignore:
Timestamp:
Jan 7, 2014, 4:28:55 PM (10 years ago)
Author:
haoliu
Message:

Change an assert in memcache for the modification in cache L1(UNC WRITE)

File:
1 edited

Legend:

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

    r605 r617  
    12521252                            // ==> TYPE_WRITE = X100 with the TSAR encoding
    12531253                            // ==> mask = 0b0111 = 0x7
    1254                             assert(((p_vci_tgt.pktid.read() & 0x7) == 0x4) and
     1254                            assert((((p_vci_tgt.pktid.read() & 0x7) == 0x4)  or ((p_vci_tgt.pktid.read() & 0x7) == 0x0)) and
    12551255                                    "The type specified in the pktid field is incompatible with the WRITE CMD");
    12561256                            r_tgt_cmd_fsm = TGT_CMD_WRITE;
Note: See TracChangeset for help on using the changeset viewer.