diff options
author | iximeow <me@iximeow.net> | 2021-06-27 01:19:52 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-06-27 01:19:52 -0700 |
commit | 1e230284c3bdeb5d3e71b5e058481ca0bf4d578e (patch) | |
tree | d88692d97b10c6da83d71dc2ffc311a842d6cb53 /test/long_mode | |
parent | dc4de3f7678218b29075aa9f24bfb06b5cb4df75 (diff) |
all tests now passing for long mode
Diffstat (limited to 'test/long_mode')
-rw-r--r-- | test/long_mode/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/long_mode/mod.rs b/test/long_mode/mod.rs index a3ad3a3..289ab77 100644 --- a/test/long_mode/mod.rs +++ b/test/long_mode/mod.rs @@ -1402,9 +1402,9 @@ fn test_misc() { #[test] fn evex() { - test_display(&[0x62, 0xf2, 0x7d, 0x48, 0x2a, 0x44, 0x40, 0x01], "vmovntdqa zmm0, zmmword [rax + rax*2 + 0x40]"); - test_display(&[0x62, 0xf2, 0x7d, 0x08, 0x2a, 0x44, 0x40, 0x01], "vmovntdqa xmm0, xmmword [rax + rax*2 + 0x10]"); - test_display(&[0x62, 0xf2, 0x7d, 0x1d, 0x66, 0x50, 0x01, 0x11], "vfpclassps"); + test_display(&[0x62, 0xf2, 0x7d, 0x48, 0x2a, 0x44, 0x40, 0x01], "vmovntdqa zmm0, zmmword [rax + rax * 2 + 0x40]"); + test_display(&[0x62, 0xf2, 0x7d, 0x08, 0x2a, 0x44, 0x40, 0x01], "vmovntdqa xmm0, xmmword [rax + rax * 2 + 0x10]"); + test_invalid(&[0x62, 0xf2, 0x7d, 0x1d, 0x66, 0x50, 0x01, 0x11]); } #[test] |