diff options
| author | iximeow <me@iximeow.net> | 2026-06-10 05:09:47 +0000 |
|---|---|---|
| committer | iximeow <me@iximeow.net> | 2026-07-05 00:09:22 +0000 |
| commit | 1862b315950a477390435a52b6061bf5948977c4 (patch) | |
| tree | 622330334c0cbb9c82ab687db8c294b6c8534eb8 /src/protected_mode | |
| parent | 9b98d9052a18b69bc080d106539d886ee28ab57c (diff) | |
pextr*/pinsr*/insertps/extrps immediate is now u8 instead of i8
Diffstat (limited to 'src/protected_mode')
| -rw-r--r-- | src/protected_mode/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protected_mode/mod.rs b/src/protected_mode/mod.rs index 54c9c0a..8bf15a4 100644 --- a/src/protected_mode/mod.rs +++ b/src/protected_mode/mod.rs @@ -6600,7 +6600,7 @@ fn read_operands< } else { instruction.regs[1].bank = RegisterBank::X; } - instruction.operands[2] = OperandSpec::ImmI8; + instruction.operands[2] = OperandSpec::ImmU8; instruction.operand_count = 3; } OperandCase::G_Ev_xmm_Ib => { @@ -6619,7 +6619,7 @@ fn read_operands< } else { instruction.regs[1].bank = RegisterBank::X; } - instruction.operands[2] = OperandSpec::ImmI8; + instruction.operands[2] = OperandSpec::ImmU8; instruction.operand_count = 3; } OperandCase::PMOVX_E_G_xmm => { |
