The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: Don57 on June 09, 2008, 04:12:06 PM

Title: Masm32 Command Line Interface
Post by: Don57 on June 09, 2008, 04:12:06 PM
I am using Masm32, and QEditor. I can assemble from the editor just fine, but when I try to assemble from the command prompt I get a link.exe not found error.
Any Ideas.
Title: Re: Masm32 Command Line Interface
Post by: ragdog on June 09, 2008, 04:32:09 PM
hi

if masm32 in c:\

use this


\masm32\bin\cvtres.exe /machine:ix86 rsrc.res

\masm32\bin\ml.exe /c /coff source.asm

\masm32\bin\link.exe /SUBSYSTEM:WINDOWS source.obj rsrc.obj

if exist *.obj del *.obj


pause