Closed lucasduffey closed 7 years ago
In the perform_get_instruction_info function I'm getting "src is undefined"
perform_get_instruction_info
elif (instr == 'brbs' or instr == 'brbc'): result.add_branch(BranchType.TrueBranch, addr + src*2 + 1*2) result.add_branch(BranchType.FalseBranch, addr + 1*2)
I assumed it might be src_value instead, but I get another error when I replace src with src_value
src_value
src
maybe it should be dst?
dst
relevant pull request: https://github.com/cah011/binja-avr/pull/10
Indeed this is the case, merged. f293f49
In the
perform_get_instruction_info
function I'm getting "src is undefined"I assumed it might be
src_value
instead, but I get another error when I replacesrc
withsrc_value