diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 12:08:51 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 12:08:51 -0700 |
commit | e4590131825d27293d9642d2ac118ff03cc894f4 (patch) | |
tree | bb3523a68f0b9d3aacad411e58838ba87109e23d /src/mem/tport.cc | |
parent | e0f137a87c21eca5faa35cf0b9b529c4243d3ff3 (diff) | |
download | gem5-e4590131825d27293d9642d2ac118ff03cc894f4.tar.xz |
Create a message port for sending messages as apposed to reading/writing a memory range.
Diffstat (limited to 'src/mem/tport.cc')
-rw-r--r-- | src/mem/tport.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/tport.cc b/src/mem/tport.cc index 254487af8..f8850df6c 100644 --- a/src/mem/tport.cc +++ b/src/mem/tport.cc @@ -65,7 +65,7 @@ SimpleTimingPort::recvTiming(PacketPtr pkt) // code to hanldle nacks here, but I'm pretty sure it didn't work // correctly with the drain code, so that would need to be fixed // if we ever added it back. - assert(pkt->isRequest()); + //assert(pkt->isRequest()); if (pkt->memInhibitAsserted()) { // snooper will supply based on copy of packet |