aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2026-05-25 18:12:35 +0000
committeriximeow <me@iximeow.net>2026-05-25 18:12:35 +0000
commit426d092da378cb271d084632a20865952da395c6 (patch)
tree295a81fef7d5cf34a60cdccf8963298b734b5e8c /test
parentcb58e32ca672b01e773e189671a6868c1d7ed9b1 (diff)
reject arpl in 16-bit decoding
Diffstat (limited to 'test')
-rw-r--r--test/real_mode/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/real_mode/mod.rs b/test/real_mode/mod.rs
index bce199b..33ac3d2 100644
--- a/test/real_mode/mod.rs
+++ b/test/real_mode/mod.rs
@@ -16854,7 +16854,7 @@ fn test_real_mode() {
test_invalid(&[0x62, 0xf3, 0xfd, 0x18, 0x44, 0x0a, 0xcc]); //
test_invalid(&[0x62, 0xf3, 0xfd, 0x88, 0x44, 0x0a, 0xcc]); //
test_invalid(&[0x62, 0xf3, 0xfd, 0xbd, 0x66, 0x0a, 0xcc]); // no zero mask-merge
- test_display(&[0x63, 0xc1], "arpl cx, ax");
+ test_invalid(&[0x63, 0xc1]); // no arpl in real mode
test_display(&[0x65, 0x66, 0x0f, 0x01, 0xdc], "stgi");
test_display(&[0x65, 0x66, 0x66, 0x64, 0x0f, 0x38, 0xdb, 0x0f], "aesimc xmm1, xmmword fs:[bx]");
test_display(&[0x65, 0x67, 0x65, 0x65, 0x0f, 0x0e], "femms");