Windows IDE for Intel x86 Assembler?

19,738

Solution 1

MASM is an x86 assembler for Windows that uses the Intel syntax. (MASM Homepage)

For an IDE, you could use MASM with Visual Studio, as described here, or you could use something smaller like RadASM. WinASM is also another one.

When I do any ASM on my Linux box I use NASM plus a text editor (gedit).

Solution 2

SASM is a open source cross platform ASM IDE.

Solution 3

Why not Visual Studio?

Share:
19,738

Related videos on Youtube

user997112
Author by

user997112

Updated on June 04, 2022

Comments

  • user997112
    user997112 almost 2 years

    Are there any IDEs (similar to Visual Studio) in which one can code and run Intel assembly? I believe I came across an Intel suite previously, but the product was quite expensive.

    At university we used a development IDE/Simulator for ARM, but was hoping for one for Intel x86.

  • user997112
    user997112 over 12 years
    Can you output to the 'console' like you can in C# etc?
  • user997112
    user997112 over 12 years
    Because all those instructions are a pain in the arse and refer to an older version of VS. I wanna be stuck on assembly problems, not configuring VS to use assembly..... There must be something which is <write assembly> <choose assembly compiler> <run assembly> ??
  • 龚元程
    龚元程 over 12 years
    @user997112: WinASM as said in the other answer lets you choose your assembler, linker, resource compiler...etc. I have used it for years.