GUI: added LJMP as unconditional jump
This commit is contained in:
parent
d75cc49eca
commit
43d9b15e15
|
@ -203,6 +203,7 @@ Instruction_t QBeaEngine::DisassembleAt(byte_t* data, duint size, duint origBase
|
|||
switch(cp.GetId())
|
||||
{
|
||||
case X86_INS_JMP:
|
||||
case X86_INS_LJMP:
|
||||
branchType = Instruction_t::Unconditional;
|
||||
break;
|
||||
default:
|
||||
|
|
|
@ -352,6 +352,7 @@ bool CapstoneTokenizer::tokenizeMnemonic()
|
|||
switch(id)
|
||||
{
|
||||
case X86_INS_JMP:
|
||||
case X86_INS_LJMP:
|
||||
type = TokenType::MnemonicUncondJump;
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue