abk
abk

Reputation: 311

Masm on Windows 7

I want to compile and execute assembly files on windows 7. In school they use DOS in which we are able to run MASM to compile and link and execute .asm files typed out.

Is there a way to do the same with these .asm files on windows 7?

Upvotes: 3

Views: 8396

Answers (4)

jyz
jyz

Reputation: 6199

In case you just want masm for Windows 7 grab it here:

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

You may also need to install this:

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

Upvotes: 1

PhiS
PhiS

Reputation: 4650

Which version of MASM are you using? The recent versions of MASM (ml.exe and ml64.exe) work fine if you just start them from command line (i.e., cmd.exe). There's MASM executables compiled as 32-bit and a 64-bit versions, as far as I remember.

Upvotes: 0

Alexey Frunze
Alexey Frunze

Reputation: 62048

Install XP Mode or DosBox and run MASM and your programs there.

Upvotes: 4

Antonio Bakula
Antonio Bakula

Reputation: 20693

You could use MASM32, download SDK from here, and there is a nice tutorial for win32 ASM at

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

Alternative would be Microsoft MASM, but I haven't tried to use it on windows, here is the link

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

Upvotes: 1

Related Questions