summaryrefslogtreecommitdiff
path: root/src/arch/x86/mmaped_ipr.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/mmaped_ipr.hh')
-rw-r--r--src/arch/x86/mmaped_ipr.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/x86/mmaped_ipr.hh b/src/arch/x86/mmaped_ipr.hh
index c7befa35b..9184ec4dc 100644
--- a/src/arch/x86/mmaped_ipr.hh
+++ b/src/arch/x86/mmaped_ipr.hh
@@ -65,6 +65,7 @@
*/
#include "config/full_system.hh"
+#include "cpu/base.hh"
#include "cpu/thread_context.hh"
#include "mem/packet.hh"
@@ -78,6 +79,7 @@ namespace X86ISA
#else
pkt->set(xc->readMiscReg(pkt->getAddr() / sizeof(MiscReg)));
#endif
+ return xc->getCpuPtr()->ticks(1);
}
inline Tick
@@ -89,6 +91,7 @@ namespace X86ISA
xc->setMiscReg(pkt->getAddr() / sizeof(MiscReg),
gtoh(pkt->get<uint64_t>()));
#endif
+ return xc->getCpuPtr()->ticks(1);
}
};