0

I recently upgraded to a 64 bit computer from a 32 bit. I have used masm32 for x86 assembly previously. My computer can run 32 bit processes, but I would prefer to use all of my computers capability and write x64 assembly programs. I do not want to have to install extra things (like ide's) to make an assembler run. What assembler should I use?

user2097804
  • 1,122
  • 4
  • 13
  • 22

1 Answers1

5

Is MASM for x64 what you're looking for?

If you want to avoid a Visual Studio installation, there's YASM, NASM, and FASM.

All of the above are mentioned in Intel's Introduction to x64 Assembly.

Kevin Richardson
  • 3,592
  • 22
  • 14