diff options
Diffstat (limited to 'tests/armv7')
| -rw-r--r-- | tests/armv7/thumb.rs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/armv7/thumb.rs b/tests/armv7/thumb.rs index 7fb2d90..914b751 100644 --- a/tests/armv7/thumb.rs +++ b/tests/armv7/thumb.rs @@ -2595,6 +2595,27 @@ fn test_decode_misc_cases() { &[0xaf, 0xf3, 0x6e, 0x80], "hint.w 0x6e" ); + // defined in ARMv8 or so.. + test_display( + &[0xaf, 0xf3, 0x0d, 0x80], + "pacbti.w" + ); + test_display( + &[0xaf, 0xf3, 0x0f, 0x80], + "bti.w" + ); + test_display( + &[0xaf, 0xf3, 0x10, 0x80], + "esb.w" + ); + test_display( + &[0xaf, 0xf3, 0x1d, 0x80], + "pac.w" + ); + test_display( + &[0xaf, 0xf3, 0x2d, 0x80], + "aut.w" + ); } #[test] fn test_decode_mov_cases() { |
