diff options
Diffstat (limited to 'src/arch/mips/mmapped_ipr.hh')
-rw-r--r-- | src/arch/mips/mmapped_ipr.hh | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/src/arch/mips/mmapped_ipr.hh b/src/arch/mips/mmapped_ipr.hh index 4c84d05f2..032fa28b2 100644 --- a/src/arch/mips/mmapped_ipr.hh +++ b/src/arch/mips/mmapped_ipr.hh @@ -37,26 +37,14 @@ * ISA-specific helper functions for memory mapped IPR accesses. */ -#include "base/misc.hh" -#include "mem/packet.hh" +#include "arch/generic/mmapped_ipr.hh" class ThreadContext; namespace MipsISA { - -inline Cycles -handleIprRead(ThreadContext *xc, Packet *pkt) -{ - panic("No implementation for handleIprRead in MIPS\n"); -} - -inline Cycles -handleIprWrite(ThreadContext *xc, Packet *pkt) -{ - panic("No implementation for handleIprWrite in MIPS\n"); -} - + using GenericISA::handleIprRead; + using GenericISA::handleIprWrite; } // namespace MipsISA #endif |