diff options
Diffstat (limited to 'test/protected_mode')
-rw-r--r-- | test/protected_mode/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/protected_mode/mod.rs b/test/protected_mode/mod.rs index dd52cfe..65e112f 100644 --- a/test/protected_mode/mod.rs +++ b/test/protected_mode/mod.rs @@ -1080,7 +1080,7 @@ fn test_prefixes() { test_display(&[0xf0, 0x31, 0x00], "lock xor dword [eax], eax"); test_display(&[0xf0, 0x80, 0x30, 0x00], "lock xor byte [eax], 0x0"); test_display(&[0xf0, 0x0f, 0xbb, 0x17], "lock btc dword [edi], edx"); - test_display(&[0x66, 0x2e, 0xf2, 0xf0, 0x0f, 0xbb, 0x13], "lock btc word cs:[ebx], dx"); + test_display(&[0x66, 0x2e, 0xf2, 0xf0, 0x0f, 0xbb, 0x13], "xacquire lock btc word cs:[ebx], dx"); test_invalid(&[0xf0, 0xc7, 0x00, 0x00, 0x00, 0x00]); test_display(&[0x0f, 0xc1, 0xcc], "xadd esp, ecx"); test_display(&[0x66, 0x0f, 0xc1, 0xcc], "xadd sp, cx"); |