diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/test.rs | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test.rs b/test/test.rs index e13f587..4722267 100644 --- a/test/test.rs +++ b/test/test.rs @@ -729,6 +729,11 @@ fn test_misc() {      test_display(&[0xf3, 0x48, 0xab], "rep stos es:[rdi], rax");      test_display(&[0xf3, 0x48, 0xa5], "rep movs es:[rdi], ds:[rsi]");      test_display(&[0xf3, 0x45, 0x0f, 0xbc, 0xd7], "tzcnt r10d, r15d"); + +    // this is actually vmx +    // test_invalid(&[0x66, 0x0f, 0xc7, 0x03]); +    test_display(&[0x66, 0x4f, 0x0f, 0xc7, 0x33], "vmclear [r11]"); +    test_display(&[0x66, 0x0f, 0xc7, 0x33], "vmclear [rbx]");  }  #[test]  | 
