aboutsummaryrefslogtreecommitdiff
path: root/test/real_mode/mod.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2026-06-10 05:09:47 +0000
committeriximeow <me@iximeow.net>2026-07-05 00:09:22 +0000
commit1862b315950a477390435a52b6061bf5948977c4 (patch)
tree622330334c0cbb9c82ab687db8c294b6c8534eb8 /test/real_mode/mod.rs
parent9b98d9052a18b69bc080d106539d886ee28ab57c (diff)
pextr*/pinsr*/insertps/extrps immediate is now u8 instead of i8
Diffstat (limited to 'test/real_mode/mod.rs')
-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 e7be755..9f6bdf3 100644
--- a/test/real_mode/mod.rs
+++ b/test/real_mode/mod.rs
@@ -779,7 +779,7 @@ mod real_mode {
testcase!(&[0x2e, 0x36, 0x0f, 0x18, 0xe7], "nop di"),
testcase!(&[0x2e, 0x3e, 0x66, 0x3e, 0x0f, 0x3a, 0x41, 0x30, 0x48], "dppd xmm6, xmmword [bx + si * 1], 0x48"),
testcase!(&[0x2e, 0x66, 0x0f, 0x3a, 0x0d, 0x40, 0x2d, 0x57], "blendpd xmm0, xmmword cs:[bx + si * 1 + 0x2d], 0x57"),
- testcase!(&[0x2e, 0x66, 0x26, 0x64, 0x0f, 0x3a, 0x21, 0x0b, 0xb1], "insertps xmm1, dword fs:[bp + di * 1], -0x4f"),
+ testcase!(&[0x2e, 0x66, 0x26, 0x64, 0x0f, 0x3a, 0x21, 0x0b, 0xb1], "insertps xmm1, dword fs:[bp + di * 1], 0xb1"),
testcase!(&[0x2f], "das"),
testcase!(&[0x31, 0xc9], "xor cx, cx"),
testcase!(&[0x33, 0x04], "xor ax, word [si]"),