home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / pespin132.exe / pespin132 / Examples / asm / _masm.bat next >
Encoding:
DOS Batch File  |  2004-12-02  |  265 b   |  12 lines

  1. @echo off
  2. set file=markers_test
  3. set res_file=res_file
  4. C:\masm32\bin\ml.exe /c /coff /Cp %file%.asm
  5. C:\masm32\bin\link.exe /SECTION:.text,RWE /SUBSYSTEM:WINDOWS,4.0 %file%.obj %res_file%.res
  6. if errorlevel 1 goto End
  7.    
  8.    del %file%.OBJ
  9.  
  10. :End
  11.  pause
  12.  cls