home *** CD-ROM | disk | FTP | other *** search
- Copyright (C) 1991 MetaWare Incorporated. All Rights Reserved.
-
- BlackStar C Function Library
- January 1991
-
- Installing the Library
- ----------------------
-
- To install the BlackStar library files, make a subdirectory on the disk on
- which the library is to be installed, change to that directory, and with the
- BlackStar diskette in drive A type:
-
- a:install
-
- For example, if you are installing the library on hard drive C and the
- BlackStar diskette is in drive A, type the following sequence of commands:
-
- c:
- md blackstr
- cd blackstr
- a:install
-
- If you are installing to a hard disk other than C or from a diskette drive
- other than A, the install batch file accepts explicit parameters for the
- source drive and destination drive. For example, to install from diskette
- drive B to hard drive D:
-
- d:
- md blackstr
- cd blackstr
- b:install b: d:
-
-
- Introduction
- ------------
-
- The complete source code for the BlackStar Library is included in this
- distribution, in the following directories:
-
- clib - System-independent C source code.
-
- ibmlib - System-dependent C and assembly code.
-
- Each of these directories has three object subdirectories that contain files
- for recompiling the libraries for use with different High C compilers:
-
- dx86_o - Version 1.6 locally optimizing compiler for MS-DOS 80x86.
-
- d386_o - Version 1.7 locally optimizing compiler for extended DOS
- 80386/486.
-
- gd386_o - Version 2.3 globally optimizing compiler for extended DOS
- 80386/486.
-
- In each object subdirectory you will find the following batch files:
-
- comp.bat - Rebuild libraries. Make the appropriate object directory (such
- as d386_o) your current working directory, and type "comp".
- comp invokes the compiler driver, setting the appropriate
- macros for the given compiler.
-
- recomp.bat - Remake only the object modules for which source modules have
- changed. If you modify a source file, change directory to the
- appropriate object directory and delete the corresponding
- object module. Then type recomp and the batch file will
- recompile or reassmeble the source files for which object files
- are missing, and then rebuild the library.
-
- NOTE: The batch files invoke some tools not supplied with High C. The
- 386/486 versions of the batch files use the Phar Lap tools 386asm and 386lib.
- The 80x86 versions of the batch files use the Microsoft tools masm and lib to
- build the libraries.
-
- WARNING: IF YOU ARE USING MICROSOFT'S LINK.EXE, the linker must be told to
- increase the maximum number of segments allowed during the link. This may be
- accomplished by setting the link environment variable with the following
- command (which may be included in your autoexec.bat file):
-
- set link=/SE:400
-
-
- Structure of this distribution
- ------------------------------
-
- \source\clib -- Source code for the machine-independent
- portions of the BlackStar library.
- \source\clib\dx86_o -- Object modules for the 80x86 libraries.
- \source\clib\d386_o -- Object modules for the 80386/486 libraries.
- \source\clib\gd386_o -- Object modules for the 80386/486 for the
- globally optimizing compiler libraries.
- \source\ibmlib -- Source code for the machine-dependent
- portions of the BlackStar library.
- \source\ibmlib\dx86_o -- Object modules for the 80x86 libraries.
- \source\ibmlib\d386_o -- Object modules for the 80386/486 libraries.
- \source\ibmlib\gd386_o -- Object modules for the 80386/486 for the
- globally optimizing compiler libraries.
- \inc -- Header files for the BlackStar library.
- \lib -- Libraries for each of the three High C compilers:
- clibs,ibmlibs -- Small-model libraries for 80x86.
- clibs,ibmlibc -- Compact-model libraries for 80x86.
- clibs,ibmlibm -- Medium-model libraries for 80x86.
- clibs,ibmlibl -- Large-model libraries for 80x86.
- clibs,ibmlibb -- Big-model libraries for 80x86.
- clib3,ibmlib3 -- Small-model emulation libraries for 80386/486.
- clibg3,ibmlibg3 -- Small-model emulation libraries for the
- globally optimizing 80386/486 compiler.
-
- \demos -- Source code for programs demonstrating the use of
- some of the BlackStar functions.
- \demos\dx86_o -- Executables created with the 80x86 compiler.
- \demos\d386_o -- Executables created with the 80386/486 compiler.
- \demos\gd386_o -- Executables created with the 80386/486 globally
- optimizing compiler libraries.
- \utils -- Source code for three utility programs which use
- some of the BlackStar functions.
- \utils\dx86_o -- Executables created with the 80x86 compiler.
- \utils\d386_o -- Executables created with the 80386/486 compiler.
- \utils\gd386_o -- Executables created with the 80386/486 globally
- optimizing compiler libraries.
-
-
- Using the BlackStar C Function Library with High C
- --------------------------------------------------
-
- If you want to link in the BlackStar libraries every time you link with the
- High C driver, set the USERLIB variable in your hcset.cnf or hc386set.cnf
- driver configuration file. If you want to specify the additional libraries
- each time you link, use the -l and -L driver options.
-
- If you want the BlackStar include files included in the compiler include
- search path, set environment variable SPATH or use driver option -I or
- -Hipath.
-
- See the High C Programmer's Guide for more information about these options.
-
-
- Floating-Point Instructions
- ---------------------------
-
- The libraries supplied with the distribution are compiled for floating-point
- instruction emulation. If you want to rebuild the libraries to support a
- coprocessor, you must edit the files comp.bat and recomp.bat in the _o
- directories to add the appropriate command-line option(s) to generate
- floating-point code.
-
- For example, to cause the 80x86 compiler to generate 80287 floating-point
- code, use command-line option -Hon=Floating_point.
-
- To generate 80387 floating-point code with the 80386/486 compiler, change
- command-line option -fsoft in the batch files to -f387.
-
- See the Programmer's Guide for more information about floating-point code.
-
-
- Notes
- -----
-
- GRAPHICS -- The gr_fill() function puts dots to the screen in the
- background color, and is slow. Use the sc_clr() function if
- you want to clear the whole screen or if you can clear to
- character boundaries (bytes).
-
- HEADERS -- You should include your standard headers before blackstr.h.
- The blackstr.h has #ifndefs for some macros, etc.
-
- INDOSF -- The utility for indosf (DOS in critical section) is
- undocumented and should be used with care.
-
- MOUSE -- The mouse functions have not been implemented for the
- 80386/486.
-
- INTERRUPTS -- The interrupt functions have not been implemented for the
- 80386/486. This, also, affects the routine pr_signal() which
- calls the unimplemented function sy_getintv() and
- sy_setintv().
-
- MEMMODELS -- The library is now distributed and supported for Small, Medium,
- Large, Compact, and Big memory models for the 80x86, and Small
- model for the 80386/486.
-