fix(interpreter): rep(n)z condition was wrong way around
This commit is contained in:
@@ -889,8 +889,8 @@ impl Interpreter {
|
|||||||
/*
|
/*
|
||||||
* Repeat prefixes
|
* Repeat prefixes
|
||||||
*/
|
*/
|
||||||
Mnemonic::REPNZ(rep_op) => self.computer.repz(*rep_op, true)?,
|
Mnemonic::REPNZ(rep_op) => self.computer.repz(*rep_op, false)?,
|
||||||
Mnemonic::REPZ(rep_op) => self.computer.repz(*rep_op, false)?,
|
Mnemonic::REPZ(rep_op) => self.computer.repz(*rep_op, true)?,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Adjust
|
* Adjust
|
||||||
|
|||||||
Reference in New Issue
Block a user