diff options
author | Gabe Black <gabeblack@google.com> | 2019-09-11 13:26:09 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2019-09-21 05:05:18 +0000 |
commit | e6c6f0601cff25bb0b9e11a7bed56f77735b21db (patch) | |
tree | 411af86137f04e752eee73c9893c7b8b0a7c751c /src/dev/x86/i82094aa.cc | |
parent | cc03cf8270fad7261f08527637325cb42615c887 (diff) | |
download | gem5-e6c6f0601cff25bb0b9e11a7bed56f77735b21db.tar.xz |
x86: Templatize the IntMasterPort.
This makes the IntMasterPort usable with any class, making it possible
to avoid inheriting from IntDevice.
It also makes IntMasterPort inherit directly from QueuedMasterPort,
skipping over MessageMasterPort.
Change-Id: I9d218556c838ea567ced5f6fa4d57a3ec9d28d31
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20821
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src/dev/x86/i82094aa.cc')
-rw-r--r-- | src/dev/x86/i82094aa.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/x86/i82094aa.cc b/src/dev/x86/i82094aa.cc index e73eec791..dfadbd945 100644 --- a/src/dev/x86/i82094aa.cc +++ b/src/dev/x86/i82094aa.cc @@ -85,12 +85,12 @@ X86ISA::I82094AA::getPort(const std::string &if_name, PortID idx) return BasicPioDevice::getPort(if_name, idx); } -Tick +bool X86ISA::I82094AA::recvResponse(PacketPtr pkt) { // Packet instantiated calling sendMessage() in signalInterrupt() delete pkt; - return 0; + return true; } Tick |