开发者

Assembly Question [closed]

开发者 https://www.devze.com 2023-02-09 03:32 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 12 years ago.

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消