home *** CD-ROM | disk | FTP | other *** search
- Installation Instructions for 286|DOS-Extender Lite (TM)
-
- Phar Lap Software, Inc.
- 60 Aberdeen Ave. Voice: +1 617 661 1510
- Cambridge, MA 02138 FAX: +1 617 876 2972
-
- Welcome, and thank you for using Phar Lap's 286|DOS-Extender Lite.
- Lite is a special, limited version of Phar Lap's award-winning
- 286|DOS-Extender SDK designed exclusively for users of Borland C++
- 3.1. If you enjoy using 286|DOS-Extender Lite, we hope that you will
- consider purchasing our full-featured SDK.
-
- These notes explain how to install Lite on your hard disk, provide a
- simple description of building one of the example programs, and describe
- other documentation files on this diskette. A complete description of how
- to compile for protected mode can be found in LITE286.DOC, described below.
-
- *******************************************************************************
- Other Documentation
- *******************************************************************************
- There are several other files which contain valuable information about
- 286|DOS-Extender Lite. These files are located in the distribution
- diskette in a directory called A:\DOC, and are copied to \LITE286\DOC
- during installation.
-
- LITE286.DOC contains "Borland C++ User's Guide to 286|DOS-Extender Lite".
- It explains how to compile and run DOS-extended programs after installing
- Lite. You may want to print this file and keep it handy as a reference
- while you are writing programs for Lite.
-
- LITEINFO is a short description of 286|DOS-Extender Lite, and contains
- an overview of the major differences between Lite and our full-featured
- SDK. It is identical to the text that is displayed if you run
- LITE286.EXE with no arguments or options.
-
- INTL.DLR contains a list of overseas dealers. If you are outside the
- USA, please feel free to contact either Phar Lap or one of these dealers
- for technical support or to order your 286|DOS-Extender SDK.
-
- ORDER.FRM is a copy of the coupon included in the 286|DOS-Extender
- Lite package.
-
- *******************************************************************************
- Installation
- *******************************************************************************
- Before installing 286|DOS-Extender Lite, you must have previously installed
- Borland C++ 3.1 on your hard drive. Please note that to use Lite, you need
- not install the entire 3.1 release; only the command-line compiler and the
- DOS large-model libraries are required. If you wish to write protected-mode
- graphics programs using the Borland Graphics Interface (BGI), then you must
- also install that component. Lite does not require, and will not use, any of
- the files installed by the "Windows Options..." menu.
-
- For our examples, we assume you have installed Borland C++ in C:\BORLANDC.
- If you have installed it elsewhere, modify these instructions accordingly.
-
- Installing 286|DOS-Extender Lite is a three-step process. First, you
- must copy all of the files from the distribution diskette to your hard
- drive. Second, you must build a special, protected-mode version of the
- C run-time library. Third, you may optionally build a special version
- of the graphics library. After you have completed each of these steps,
- you are ready to start building protected mode applications!
-
-
- Step 1: Copy Files From Diskette
- --------------------------------
- To copy the files from the diskette, insert the distribution diskette
- and type "A:INSTALL". The installation program will then ask you a
- series of questions. You may either install Lite in the suggested
- directory or specify your own location. These instructions assume that
- you install Lite in C:\LITE286. If you have 286|DOS-Extender SDK, you
- should *not* install Lite in the same directory as the SDK.
-
- If you prefer not to use our interactive installation program
- A:INSTALL.EXE, you may copy the files with xcopy:
-
- C:\> xcopy a:\ c:\lite286\. /s
-
-
- Step 2: Build a Run-Time Library
- --------------------------------
- Instead of using the large-model real-mode CL.LIB that comes with
- Borland C++, 286|DOS-Extender Lite requires a protected-mode library
- called BCL286.LIB. BCL286.LIB is based on CL.LIB but contains some
- small but important modifications for protected mode. The batch
- program \LITE286\BC3\LIB\MKLIB.BAT creates BCL286.LIB from a copy of
- CL.LIB. The new library is created in \LITE286\BC3\LIB. MKLIB.BAT
- does not in any way modify files in the \BORLANDC directory tree.
-
- MKLIB.BAT should be executed while \LITE286\BC3\LIB is the current directory:
-
- C:\> cd \lite286\bc3\lib
- C:\LITE286\BC3\LIB> mklib l \borlandc\lib
-
- MKLIB.BAT invokes LIB.EXE from Borland C++ 3.1 -- if MKLIB.BAT fails,
- check that you installed Borland C++ correctly, and that \BORLANDC\BIN
- is in your PATH environment variable.
-
- Step 3: Build a Graphics Library
- --------------------------------
- Protected-Mode Lite programs can call the Borland Graphics
- Interface (BGI). Just as a special version of the C library
- must be built, you must build a special version of the graphics
- library.
-
- The batch program which does this is \LITE286\BC3\LIB\MKGRAPH.BAT:
-
- C:\LITE286\BC3\LIB> mkgraph \borlandc\lib
-
-
- *******************************************************************************
- Building Sample Executables
- *******************************************************************************
- To simplify building protected-mode executables, we provide
- \LITE286\BIN\BCC286.EXE. BCC286 acts as a "front-end" to BCC.EXE and
- TLINK.EXE, providing them with all the proper options and arguments. For
- complete documentation on BCC286.EXE, consult the file LITE286.DOC.
-
- BCC286.EXE uses certain environment variables to control its operations.
- These variables are not strictly required, but we will use them in this
- demonstration.
-
- The LIB environment variable contains a list of directories in which to
- search for libraries and startup object modules. This list must include
- Lite's library directory in addition to Borland C++'s.
-
- The PATH environment variable must include both Lite's executable directory
- and Borland C++'s.
-
- C:\LITE286\EXAMPLES> set LIB=\lite286\bc3\lib;\borlandc\lib
- C:\LITE286\EXAMPLES> set PATH=\dos;\lite286\bin;\borlandc\bin
- C:\LITE286\EXAMPLES> bcc286 hello.c
- C:\LITE286\EXAMPLES> hello.exe
- Hello from protected mode!
-
- When compiling a program that uses BGI for real mode you link against
- GRAPHICS.LIB. For protected mode, the library to use is GRAPH286.LIB.
- Assuming the environment variables are still set as above, then building
- a protected-mode BGIDEMO.EXE is as simple as:
-
- C:\LITE286\EXAMPLES> bcc286 bgidemo.c graph286.lib
-
- LITE286.DOC provides complete details of the build process; it also
- describes LITE286.EXE and GORUN286.EXE, the programs which actually
- load and execute your program in protected mode.
-
- *******************************************************************************
- What Next?
- *******************************************************************************
- You have now completely installed 286|DOS-Extender Lite, and are ready to
- build multi-megabyte programs. Please read the file LITE286.DOC for more
- information on protected-mode programming.
-
- We sincerely hope that you find 286|DOS-Extender Lite both useful and
- easy to use. If Lite makes you more productive, then consider what our
- full-featured 286|DOS-Extender SDK can do for you! Ordering information
- is contained in the files LITEINFO, ORDER.FRM, and INTL.DLR.
-