Skip to content

Commit

Permalink
Remove unused writeout argument (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gert-JanG authored May 6, 2024
1 parent c9de71d commit 892f0f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion angr_platforms/msp430/instrs_msp430.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ class Instruction_RRA(Type1Instruction):
opcode = "010"
name = 'rra'

def compute_result(self, src, writeout):
def compute_result(self, src):
# Do it
src >>= 1
# A shitty sign-extend
Expand Down

0 comments on commit 892f0f7

Please sign in to comment.