mirror of
https://github.com/x64dbg/x64dbg.git
synced 2024-11-23 13:00:14 +00:00
GUI: fixed another bug in BeaTokenizer with the string instructions (rep/repne prefix)
This commit is contained in:
parent
39a73ba838
commit
ee899f85c1
@ -138,6 +138,7 @@ void BeaTokenizer::Mnemonic(BeaInstructionToken* instr, const DISASM* disasm)
|
||||
type=TokenMnemonicNop;
|
||||
else if(completeInstr.contains("movs") || completeInstr.contains("cmps") || completeInstr.contains("scas") || completeInstr.contains("lods") || completeInstr.contains("stos") || completeInstr.contains("outs"))
|
||||
{
|
||||
completeInstr=completeInstr.replace("rep ", "").replace("repne ", "");
|
||||
if(completeInstr.length()!=5)
|
||||
{
|
||||
AddToken(instr, type, mnemonic, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user