diff options
Diffstat (limited to 'src/arch/power/mmapped_ipr.hh')
-rw-r--r-- | src/arch/power/mmapped_ipr.hh | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/src/arch/power/mmapped_ipr.hh b/src/arch/power/mmapped_ipr.hh index 142253462..28e3b613c 100644 --- a/src/arch/power/mmapped_ipr.hh +++ b/src/arch/power/mmapped_ipr.hh @@ -41,26 +41,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 PowerISA { - -inline Cycles -handleIprRead(ThreadContext *xc, Packet *pkt) -{ - panic("No implementation for handleIprRead in POWER\n"); -} - -inline Cycles -handleIprWrite(ThreadContext *xc, Packet *pkt) -{ - panic("No implementation for handleIprWrite in POWER\n"); -} - + using GenericISA::handleIprRead; + using GenericISA::handleIprWrite; } // namespace PowerISA #endif // __ARCH_POWER_MMAPPED_IPR_HH__ |