angr / angr-platforms

A collection of extensions to angr to handle new platforms
http://angr.io/
BSD 2-Clause "Simplified" License
66 stars 37 forks source link

msp430: do not read destination operand for MOV #68

Closed jovanbulck closed 5 months ago

jovanbulck commented 5 months ago

This ensures no false fires of the mem_read breakpoint. MOV is the only MSP430 Type3Instruction that does not read its destination operand, as it will be overwritten.

twizmwazin commented 5 months ago

Thanks!