@echo off cls echo ---------------------------------- echo Doors CS Assembler\Compiler echo Version 2.0 echo Written by Kerm Martian echo http:\\www.Cemetech.net echo ---------------------------------- echo ----- Assembling %1 for the TI-83/84 Plus... echo #define TI83P >tasm\zztemp.asm if exist source\%1.asm type source\%1.asm >>tasm\zztemp.asm if exist source\%1.z80 type source\%1.z80 >>tasm\zztemp.asm cd tasm brass zztemp.asm ..\exec\%1.bin -l ..\list\%1.list.html if errorlevel 1 goto ERRORS cd.. cd exec ..\tasm\binpac8x.py %1.bin echo ----- %1 for the TI-83/84 Plus Assembled and Compiled. echo TI-83 Plus version is %1.8xp goto DONE :ERRORS echo ----- There were errors. cd.. :DONE del ..\tasm\zztemp.asm >nul del %1.bin >nul cd..