Masm on Windows 7

I want to compile and execute assembly files on Windows 7. At school, they use DOS, in which we can run MASM to compile and link and execute .asm files.

Is there a way to do the same with these .asm files in Windows 7?

+3
source share
4 answers

Install XP Modeor DosBoxrun MASM and your programs there.

+4
source

You can use MASM32, download the SDK from here , and there is a good tutorial for ASM win32

http://win32assembly.online.fr/tutorials.html

The alternative would be Microsoft MASM, but I have not tried to use it on Windows, here is the link

http://www.microsoft.com/en-us/download/details.aspx?id=12654

+1

What version of MASM are you using? The latest versions of MASM ( ml.exeand ml64.exe) work fine if you only run it from the command line (ie cmd.exe). As far as I remember, the MASM executable files are compiled as 32-bit and 64-bit versions.

0
source

All Articles