plasma-disassembler / plasma

Plasma is an interactive disassembler for x86/ARM/MIPS. It can generates indented pseudo-code with colored syntax.
GNU General Public License v3.0
3.05k stars 275 forks source link

decode AND dest, 0 as dest = 0 #25

Closed dnet closed 9 years ago

dnet commented 9 years ago

Same as 436a9c3, but with AND and 0, I found it in Visual Studio 2010+ PE binaries.

Before:

0x546e73: *(ecx + 12) &= 0 # and dword ptr [ecx + 0xc], 0

After:

0x546e73: *(ecx + 12) = 0 # and dword ptr [ecx + 0xc], 0
ghost commented 9 years ago

Thanks