Asm Ide
Asm Ide
Asm Compiler?
I need an asm with a good IDE, and active community. Please don’t redirect me to another language, as I have already learned C++. To advance my RE and debugging skills I want to learn how to create programs in ASM.
Well, in the world of today, there’s very little point in creating complete programs in assembler – the days when this was practiced are long gone.
Only blocks of code that require extreme optimizations are written in assembler today, like pieces of hardware drivers, advanced cryptography and few other very specialized applications.
That said, the only thing you really need to compile assembly modules on Windows is MASM:
http://www.microsoft.com/downloads/details.aspx?FamilyID=7A1C9DA0-0510-44A2-B042-7EF370530C64&displaylang=en
On UNIX, GNU Assembler (GAS) does the job perfectly.
As far as debugging goes, Microsoft Visual Studio has always supported assembler-level debugging that is enough for basic reverse engineering.
And if that’s not enough, and you’re interested in heavy weaponry, IDA Pro Disassembler is the utlimate professional-grade tool ( http://www.hex-rays.com/idapro/ ).
Compiling .asm to .hex using MPLAB IDE for PIC Microcontroller
