[ASM / C++] Converting ASM to C++

I1. I'm curious to know if theres such a program that will allow you to translate the ASM into C++, or if it has to be done manually because of the fact that it's two different languages. I saw a program that had translated ASM into C, so I was wondering if C++ would possibly work the same way.


2. I also need to know what program I may be able to get to help me with my ASM to C++ troubles such as a decompiler ect.. if anyone has come across it when surfing the web

Best automatic decompiler to date is Hex-Rays. This is perhaps an order of magnitude more sophisticated than any previous asm to C++ decompiler. You will need a legal copy of IDA Pro 5.1 to get on the beta ... Here is its manual http://www.hexblog.com/hexrays/manual/[/URL}
 
>solution, My solution was simple, the file of the asm was broken down to far towards the encryption rendering the file useless, then I figured out that I had to redo it and use the programs that I was told about to get the right asm. it was just a matter of a decompiling problem
 
well really in this case the best thing is to use olly. A dissasembler helps, but only if you know what you are looking for lol. use olly and set a few breakpoints on whats being looked for then trace it through to see what you need to see.
 
Back