aboutsummaryrefslogtreecommitdiff
path: root/test/protected_mode
diff options
context:
space:
mode:
Diffstat (limited to 'test/protected_mode')
-rw-r--r--test/protected_mode/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/protected_mode/mod.rs b/test/protected_mode/mod.rs
index 6cf4cc5..7fb3b77 100644
--- a/test/protected_mode/mod.rs
+++ b/test/protected_mode/mod.rs
@@ -3673,9 +3673,9 @@ mod svm {
testcase!(&[0x0f, 0x01, 0xd8], "vmrun eax"),
testcase!(&[0x0f, 0x78, 0xc4], "vmread esp, eax"),
testcase!(&[0x0f, 0x79, 0xc5], "vmwrite eax, ebp"),
- testcase!(&[0x0f, 0x78, 0x0b], "vmread qword [ebx], ecx"),
+ testcase!(&[0x0f, 0x78, 0x0b], "vmread dword [ebx], ecx"),
testcase!(invalid: &[0x66, 0x0f, 0x78, 0x03]),
- testcase!(&[0x0f, 0x79, 0x0b], "vmwrite ecx, qword [ebx]"),
+ testcase!(&[0x0f, 0x79, 0x0b], "vmwrite ecx, dword [ebx]"),
testcase!(invalid: &[0x66, 0x0f, 0x79, 0x03]),
];