Reputation: 490
I'm running a WINXP, and I'm quite curious as to how you run or execute assembly code. Is there some sort of application I need, or do I need to run it from a terminal...?
Upvotes: 0
Views: 3079
Reputation: 77
I have used tasm32 and masm32 well.. Masm32 has a good gui so ad recommend that. Both also have debuggers. masm32forum is a good playground also...
Upvotes: 2
Reputation: 2168
You need an assembler that is compatible with your systems architecture. I use TASM (turbo assembler) for x86. Then you will also need a linker that will allow you to 'execute' the code.
Upvotes: 1
Reputation: 3889
You want to use MASM or NASM:
http://en.wikipedia.org/wiki/Microsoft_Macro_Assembler
Upvotes: 2
Reputation: 29009
You don't run or execute assembly code. Before it can be executed, it needs to be assembled into an executable (hence the name).
Upvotes: 1