home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hackers Magazine 57
/
CdHackersMagazineNr57.iso
/
Software
/
Programming
/
pespin132.exe
/
pespin132
/
Examples
/
asm
/
_masm.bat
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
2004-12-02
|
265 b
|
12 lines
@echo off
set file=markers_test
set res_file=res_file
C:\masm32\bin\ml.exe /c /coff /Cp %file%.asm
C:\masm32\bin\link.exe /SECTION:.text,RWE /SUBSYSTEM:WINDOWS,4.0 %file%.obj %res_file%.res
if errorlevel 1 goto End
del %file%.OBJ
:End
pause
cls