Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows IDE for Intel x86 Assembler? [closed]

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.

like image 836
user997112 Avatar asked Oct 25 '11 22:10

user997112


People also ask

Is x86 assembly still used?

Assembly still sees some direct use in operating systems and drivers, and I'm sure plenty of embedded developers use it from time to time to. Obviously way less common than it used to be, but it definitely happens.

What IDE should I use for assembly language?

Visual Studio Code is one of the most popular code editor made by Microsoft. Visual Studio code has lots of extra features as like debugging, syntax highlighting, intelligent code completion snippets and etc.

Does Windows use x86 assembly?

Microsoft Win32 uses the x86 processor in 32-bit flat mode. This documentation will focus only on the flat mode.


2 Answers

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).

like image 85
AusCBloke Avatar answered Oct 07 '22 13:10

AusCBloke


Why not Visual Studio?

like image 20
Jacob Krall Avatar answered Oct 07 '22 14:10

Jacob Krall