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-05-25 00:59:27 +0000
commit470ddb9a0329a8f1823674bca2c108e012ca2780 (patch)
treec5ccc556fdde40ad263caff9dbdb6427597d0a5b /test/long_mode
parenta049351c5d512710f557ffb45ee6391fc86a3dc6 (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 0b6dcc6..6d12c8d 100644
--- a/test/long_mode/mod.rs
+++ b/test/long_mode/mod.rs
@@ -2852,6 +2852,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]