Hello,
You can also use a batch file for compiling your code. Below is a simple example.
@echo off\masm32\bin\ml /c /coff filename.asm\masm32\bin\link /subsystem:console filename.objpause
regards,
MrBogus
I'd like to add, for gui apps:
\masm32\bin\rc filename.rc\masm32\bin\ml /c /coff filename.asm\masm32\bin\link /SUBSYSTEM:WINDOWS /LIBPATH:c:\masm32\lib filename.obj filename.res
Hi MrBogus, nice to see you here! :D