Offer to look possibility MS VC++ 6.0
1. Create empty cpp project(project's dirname and main filename must be alike) and save all.
2. Prepare Debug configuration. Menu Project -> Settings -> General: set flag
Always custom build step
and Custom: --->Commands
----------------
@echo off
if exist $(TargetPath)\Debug\$(TargetName).obj del $(TargetPath)\Debug\$(TargetName).obj
if exist $(TargetPath)\Debug\$(TargetName).exe del $(TargetPath)\Debug\.exe
@echo $(TargetPath)\$(TargetName)
c:\masm32\bin\ml.exe /nologo -c /coff /Cp -Fl -Zi .\$(TargetName).asm
copy $(TargetName).obj $(OutDir)\$(TargetName).obj
del $(TargetName).obj
if errorlevel 1 goto errasm
if not exist $(TargetPath)\rsrc.obj goto nores
c:\masm32\bin\Link.exe /nologo /SUBSYSTEM:WINDOWS /DEBUG /DEBUGTYPE:CV /incremental:yes
/pdb:"$(OutDir)/$(TargetName).pdb" /machine:I386 /pdbtype:sept /OUT:$(OutDir)\$(TargetName).exe
$(OutDir)\$(TargetName).obj
$(TargetPath)\rsrc.obj
if errorlevel 1 goto errlink
dir $(OutDir)\$(TargetName).*
goto TheEnd
:nores
c:\masm32\bin\Link.exe /nologo /SUBSYSTEM:WINDOWS /DEBUG /DEBUGTYPE:CV /incremental:yes
/pdb:"$(OutDir)/$(TargetName).pdb" /machine:I386 /pdbtype:sept /OUT:$(OutDir)\$(TargetName).exe
$(OutDir)\$(TargetName).obj
copy $(TargetDir)$(TargetName).lst $(OutDir)\$(TargetName).lst
del $(TargetName).lst
if errorlevel 1 goto errlink
dir$(OutDir)\$(TargetName).*
goto TheEnd
:errlink
echo _
echo Link error
goto TheEnd
:errasm
echo _
echo Assembly Error
goto TheEnd
:TheEnd
pause
---------------
----->Outputs
$(OutDir)\$(TargetName).exe
Ok and Save All
3. Add your asm-files to new project.
4. Use standard Build Menu for build and debug now.
inprj21(C).