X86: Define a noop ExtMachInst.
[gem5.git] / src / arch / mips / mmaped_ipr.hh
index 041c76fdc5c4f6f45297497b0fc329a425699146..99c2e7fc70e4071300ffb43dd0c86aed4023d99a 100644 (file)
  * ISA-specific helper functions for memory mapped IPR accesses.
  */
 
+#include "base/misc.hh"
 #include "mem/packet.hh"
 
+class ThreadContext;
 
 namespace MipsISA
 {
+
 inline Tick
 handleIprRead(ThreadContext *xc, Packet *pkt)
 {
     panic("No implementation for handleIprRead in MIPS\n");
 }
 
-
 inline Tick
 handleIprWrite(ThreadContext *xc, Packet *pkt)
 {
     panic("No implementation for handleIprWrite in MIPS\n");
 }
 
-
 } // namespace MipsISA
 
 #endif