From ed5c76a0f8e92656539f305b9b7ea5e032517f36 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 10 Oct 2021 14:40:55 -0700 Subject: support endbr{32,64} --- test/protected_mode/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/protected_mode') diff --git a/test/protected_mode/mod.rs b/test/protected_mode/mod.rs index 41ecbb7..4b8ca8d 100644 --- a/test/protected_mode/mod.rs +++ b/test/protected_mode/mod.rs @@ -2361,6 +2361,9 @@ fn prefixed_f20f() { #[test] fn prefixed_f30f() { test_display(&[0xf3, 0x0f, 0x16, 0xcf], "movshdup xmm1, xmm7"); + test_display(&[0xf3, 0x0f, 0x1e, 0xfa], "endbr64"); + test_display(&[0xf3, 0x0f, 0x1e, 0xfb], "endbr32"); + test_display(&[0xf3, 0x0f, 0x1e, 0xfc], "nop esp, edi"); } #[test] -- cgit v1.1