home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem filename:VBOX3to5 - make BOXING VGA disk #1 on 5 1/4" disk
- cls
- echo If you have one 360K 5 1/4" floppy disk drive and one 720K 3 1/2" floppy
- echo disk drive you may use this utility to create a 5 1/4" floppy to be used
- echo as the main Boxing program disk (VGA Disk #1).
- if "%1" == "A:" goto good
- if "%1" == "a:" goto good
- if "%1" == "B:" goto good
- if "%1" == "b:" goto good
- echo Syntax error - you must specify the 5 1/4" disk drive on which you are
- echo creating the new program disk, such as "VBOX3TO5 a:"
- goto end
- :good
- echo Please insert a blank, formatted floppy disk in drive %1 and
- Pause
- copy vbox.exe %1 >nul
- copy boxrdata.blt %1 >nul
- copy bglobe.blt %1 >nul
- copy rankings.txt %1 >nul
- copy box.bat %1 >nul
- echo Label the disc in Drive %1 "BOXING VGA DISK #1".
- echo To run BOXING from floppies, put this newly created disk in
- echo drive %1 and type in the following two lines:
- echo %1
- echo BOX
- echo Note: the current 3 1/2" disk you are using to create the new 5 1/4"
- echo disc will still be used as "VGA Disk #4".
- :end
-
-