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())
|
switch(cp.GetId())
|
||||||
{
|
{
|
||||||
case X86_INS_JMP:
|
case X86_INS_JMP:
|
||||||
|
case X86_INS_LJMP:
|
||||||
branchType = Instruction_t::Unconditional;
|
branchType = Instruction_t::Unconditional;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -352,6 +352,7 @@ bool CapstoneTokenizer::tokenizeMnemonic()
|
||||||
switch(id)
|
switch(id)
|
||||||
{
|
{
|
||||||
case X86_INS_JMP:
|
case X86_INS_JMP:
|
||||||
|
case X86_INS_LJMP:
|
||||||
type = TokenType::MnemonicUncondJump;
|
type = TokenType::MnemonicUncondJump;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue