@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.BAS GOTO BASFound ECHO SAMPLE%2.BAS was not found! GOTO OUT :BASFound ECHO. ECHO. ECHO. ECHO Building SAMPLE%2 Program... BC /o SAMPLE%2.BAS; LINK SAMPLE%2.OBJ+QBLINK.OBJ+SSH0XDRV.OBJ+%1.OBJ; 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 QuickBASIC 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 QuickBASIC compiler, ECHO therefore it expects the BC.EXE program to be in your path. You must ECHO also have LINK.EXE and BCOM45.LIB in the current directory. ECHO. :OUT