From e1263595524a2f3ac6bf7b798e3e17ae0c6b906f Mon Sep 17 00:00:00 2001 From: iximeow Date: Tue, 26 May 2026 16:38:04 +0000 Subject: fix jrcxz/jecxz/jcxz having "two operands" --- src/protected_mode/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/protected_mode/mod.rs') diff --git a/src/protected_mode/mod.rs b/src/protected_mode/mod.rs index 3036620..6a1d19b 100644 --- a/src/protected_mode/mod.rs +++ b/src/protected_mode/mod.rs @@ -9053,6 +9053,7 @@ fn read_operands< .with_id(words.offset() as u32 * 8), ); instruction.operands[0] = OperandSpec::ImmI8; + instruction.operand_count = 1; }, }; Ok(()) -- cgit v1.1