1
0
Fork 0

GUI: added LJMP as unconditional jump

This commit is contained in:
mrexodia 2016-07-21 03:22:14 +02:00
parent d75cc49eca
commit 43d9b15e15
No known key found for this signature in database
GPG Key ID: D72F9A4FAA0073B4
2 changed files with 2 additions and 0 deletions

View File

@ -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:

View File

@ -352,6 +352,7 @@ bool CapstoneTokenizer::tokenizeMnemonic()
switch(id)
{
case X86_INS_JMP:
case X86_INS_LJMP:
type = TokenType::MnemonicUncondJump;
break;
default: