@ECHO OFF ECHO ACCES I/O Products IF "%1" == "" GOTO INSTRUCT IF "%2" == "" GOTO INSTRUCT IF EXIST %1.OBJ GOTO OBJFound ECHO %1.OBJ was not found! GOTO OUT :OBJFound IF EXIST SAMPLE%2.PAS GOTO PASFound ECHO SAMPLE%2.PAS was not found! GOTO OUT :PASFound ECHO. ECHO. ECHO. ECHO Building SAMPLE%2 Program... TYPE PART1.INT > SSH0XDRV.INT ECHO {$L %1.OBJ} >> SSH0XDRV.INT TYPE PART2.INT >> SSH0XDRV.INT TPC SAMPLE%2.PAS ECHO Done building SAMPLE%2 Program. ECHO Operation completed. GOTO OUT :INSTRUCT ECHO This is a batch file created to assist you in building the included ECHO TurboPASCAL sample programs. To use: ECHO Type -- ECHO BUILD cardname samplenumber ECHO where cardname is AD12-8, AIO-8P, AD1216, or AD128G, ECHO and where "samplenumber" is a digit from 0 to 9. For example, some valid ECHO commands would be - ECHO BUILD AD12-8 0 ECHO to build SAMPLE0.EXE from its respective files or ECHO BUILD AIO-8P 4 ECHO to build SAMPLE4.EXE from its files. ECHO. ECHO. ECHO This batch file assumes that you are using the TurboPASCAL compiler, ECHO therefore it expects the TPC.EXE program to be in your path. ECHO. :OUT