diff options
-rw-r--r-- | test/test.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test.rs b/test/test.rs index b1520bc..f28f551 100644 --- a/test/test.rs +++ b/test/test.rs @@ -195,8 +195,8 @@ fn vex() { #[test] fn prefixed_0f() { - test_display(&[0x0f, 0x02, 0xc0], "lar eax, eax"); - test_display(&[0x48, 0x0f, 0x02, 0xc0], "lar rax, eax"); + test_display(&[0x0f, 0x02, 0xc0], "lar eax, ax"); + test_display(&[0x48, 0x0f, 0x02, 0xc0], "lar rax, ax"); test_display(&[0x0f, 0x03, 0xc0], "lsl eax, eax"); test_display(&[0x48, 0x0f, 0x03, 0xc0], "lsl rax, rax"); test_display(&[0x0f, 0x05], "syscall"); |