diff options
author | iximeow <me@iximeow.net> | 2020-10-27 00:57:33 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-10-27 00:57:33 -0700 |
commit | 39aaebeb48c30b96b4ff8b66663a1452e2571426 (patch) | |
tree | 6d87158a84ab9e9865bdb86a2ab27290cdb94436 /test/protected_mode/mod.rs | |
parent | fb9ead64e6c7d96c02627b01b6a85921e2d8f7a4 (diff) |
fix misdecode of instructions in opcode 0x800.1.3
Diffstat (limited to 'test/protected_mode/mod.rs')
-rw-r--r-- | test/protected_mode/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/protected_mode/mod.rs b/test/protected_mode/mod.rs index c5c3c7b..84448ef 100644 --- a/test/protected_mode/mod.rs +++ b/test/protected_mode/mod.rs @@ -972,6 +972,7 @@ fn test_prefixes() { test_display(&[0x66, 0x32, 0xc5], "xor al, ch"); test_invalid(&[0xf0, 0x33, 0xc0]); test_display(&[0xf0, 0x31, 0x00], "lock xor [eax], eax"); + test_display(&[0xf0, 0x80, 0x30, 0x00], "lock xor [eax], 0x0"); test_invalid(&[0xf0, 0xc7, 0x00, 0x00, 0x00, 0x00]); } |