Assembly Question [closed]
Where can I write and compile assembly code ? (I am using windows vista 64 bit). Also is there a Dissasem开发者_开发百科bler I can use?
Regards
You can write assembly code in any text editor so long as you have an assembler handy. For windows, to disassemble code, you can use the disassembly view in VisualStudio or you can use IDA. Assembly coding depends entirely on the processor architecture. For x64 assembly, check out this tutorial.
You can write inline assembly using C/C++ (with the __asm
keyword).
I would suggest though that you head over to the MASM32 forum, they have lots of beginner resources, IDEs, suggestions and tutorials.
精彩评论