Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2. title SPASM - TI-83 Plus Assembler
  3.  
  4. rem Main routine of this program
  5. :main
  6. set /p source=Source file:
  7. set /p output=Output name:
  8. echo.
  9. echo Assembling %source% into %output%
  10. spasm.exe %source% %output%
  11. echo.
  12. pause
  13. set /p again=Assemble another file [y/n]:
  14. if %again%==y goto main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement