Skip to content

Commit

Permalink
Merge pull request #51 from matan1008/bugfix/next-instruction-run
Browse files Browse the repository at this point in the history
command: next_instruction: Fix call from run
  • Loading branch information
doronz88 authored Sep 11, 2024
2 parents 952e9b9 + b9cd2be commit 2515eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fa/commands/next_instruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ def next_instruction(addresses: List[int],

def run(segments, args, addresses: List[int], interpreter=None, **kwargs):
regs_description = utils.create_regs_description_from_args(args)
return list(next_instruction(addresses, args.mnem, regs_description, args.address, args.back, args.limit))
return list(next_instruction(addresses, args.mnem, regs_description, args.back, args.limit))

0 comments on commit 2515eee

Please sign in to comment.