This note describes how to install the CS1300 software on your home machine so that it is automatically available each time that you open a DOS window. You'll need about 100,000,000 bytes of free space on the hard drive.
The second of these files is large (about 22MB), but even a modem internet connection can probably download it overnight. If you don't want to wait overnight, you can download the files to a machine in the Engineering Center and copy them to a zip disc if you have a zip drive. Or you can buy a CD-ROM that contains the two files ($2 from your course instructor).
C:
cd \
unzip cs1300.zip
del unzip.exe
del cs1300.zip
edit autoexec.bat
to open your
autoexec.bat file. Note that this is the C: drive, not
necessarily the drive that you are using for the cs1300 software.
Add the following lines to the end of this
autoexec.bat file (changing the letter C: to the letter of the
hard drive where you installed the cs1300 software):
SET EMACS_HOME=C:\cs1300\emacs SET C_INCLUDE_PATH=C:\cs1300\include SET CPLUS_INCLUDE_PATH=C:\cs1300\include\g++;C:\cs1300\include SET LIBRARY_PATH=C:\cs1300\lib SET GCC_EXEC_PREFIX=C:\cs1300\lib\gcc-lib\ SET BISON_SIMPLE=C:\cs1300\share\bison.simple SET BISON_HAIRY=C:\cs1300\share\bison.hairy PATH=%PATH%;C:\cs1300\binNotice that there is a backslash at the end of "gcc-lib" in one of these commands.