aboutsummaryrefslogtreecommitdiff
path: root/target-i386/op.c
diff options
context:
space:
mode:
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-09 23:35:27 +0000
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-09 23:35:27 +0000
commitdf01e0fc33af5b1247d8ac4bfec5b94466ff69c2 (patch)
treeaac79403965a0602952eee4ab7b13d069098d1fd /target-i386/op.c
parent8543243c29a60f102d7a3d98027b46bc8cdac421 (diff)
downloadqemu-df01e0fc33af5b1247d8ac4bfec5b94466ff69c2.zip
qemu-df01e0fc33af5b1247d8ac4bfec5b94466ff69c2.tar.gz
qemu-df01e0fc33af5b1247d8ac4bfec5b94466ff69c2.tar.bz2
Add rdpmc SVM intercept, by Bernhard Kauer.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3791 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op.c')
-rw-r--r--target-i386/op.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/target-i386/op.c b/target-i386/op.c
index 7d8950e..77930db 100644
--- a/target-i386/op.c
+++ b/target-i386/op.c
@@ -953,6 +953,11 @@ void OPPROTO op_rdtsc(void)
helper_rdtsc();
}
+void OPPROTO op_rdpmc(void)
+{
+ helper_rdpmc();
+}
+
void OPPROTO op_cpuid(void)
{
helper_cpuid();