Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. cls
  2.  
  3. echo off
  4.  
  5. echo 'Start Program'
  6. %1\BIN\TASM.EXE %2
  7. %1\BIN\TLINK.exe /x /t %2
  8.  
  9. if errorlevel 1 goto bad
  10.  
  11. goto ok
  12.  
  13. :bad
  14. echo 'Compilation Error'
  15. goto end
  16.  
  17. :ok
  18. echo 'Compilation Ok'
  19. goto end
  20.  
  21. :end
  22. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement