-1

Is there a tool to automatic decompile an assembly x86 code?

What I need is a tool where I simply paste my code and it returns C code.

Thanks

1 Answers1

1

I'm not sure exactly what you mean by "automatic", but you could always assemble your code, then run it through a decompiler to get your pseudocode C output. This answer details a way to do this entirely from the browser.

multithr3at3d
  • 611
  • 3
  • 15