Advertisement
Guest User

Untitled

a guest
Oct 4th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. @echo off
  2. cls
  3.  
  4. set PATH=PATH;%~dp0\bin;%~dp0
  5. goto test
  6.  
  7. ML /nologo -c -coff %1.asm
  8.  
  9.  
  10. LINK /nologo %1.obj /SUBSYSTEM:WINDOWS /STUB:64stub.exe /FILEALIGN:512 /VERSION:4.0 /MERGE:.rdata=.text /ignore:4078 /RELEASE /BASE:0x400000
  11.  
  12. if errorLevel 1 goto terminate
  13.  
  14. echo OK
  15.  
  16. :terminate
  17. pause
  18. exit
  19.  
  20. :test
  21. rmdir /S /Q ..\
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement