aboutsummaryrefslogtreecommitdiff
path: root/test/long_mode
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2026-04-17 02:22:24 +0000
committeriximeow <me@iximeow.net>2026-04-17 02:22:24 +0000
commit5e9c3238e2d7f4565c510f396c57864901d76827 (patch)
tree874e3444a3a669c7e1d86d9de3f7d4ae7d5f6964 /test/long_mode
parent6e41e945552dde69ab15bfa63e4d2bb20b5efc34 (diff)
more precise about 0f0d prefetch/nop
Diffstat (limited to 'test/long_mode')
-rw-r--r--test/long_mode/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/long_mode/mod.rs b/test/long_mode/mod.rs
index 3b55f32..f3676dd 100644
--- a/test/long_mode/mod.rs
+++ b/test/long_mode/mod.rs
@@ -2854,6 +2854,8 @@ fn test_adx() {
#[test]
fn test_prefetchw() {
test_display(&[0x0f, 0x0d, 0x08], "prefetchw zmmword [rax]");
+ test_display(&[0x0f, 0x0d, 0x00], "nop zmmword [rax]");
+ test_invalid(&[0x0f, 0x0d, 0xc0]);
}
#[test]