home *** CD-ROM | disk | FTP | other *** search
-
-
- C TOOLS PLUS 3.02 BLAISE COMPUTING
-
-
- C T O O L S P L U S
-
- Version 3.02
- April 17, 1987
-
-
- This document provides information on the installation and use of C TOOLS
- PLUS. It should be used as a supplement to the manual. Please read the
- Introduction and "Using C TOOLS PLUS" in the manual. If you are upgrading to
- C TOOLS PLUS from C TOOLS or C TOOLS 2, please read Appendix I also. Then
- read this file for information specific to your C compiler and to this
- version of C TOOLS PLUS.
-
- If you are using C TOOLS PLUS with C VIEW MANAGER, please read the CTPCVM.DOC
- file.
-
- At the end of this file is a list of the files supplied and the diskettes and
- subdirectories where they may be found.
-
- COMPILER-SPECIFIC FILES -- FOR ALL USERS
-
- The following table lists the specific files you should install and use for
- your compiler and memory model. The columns of the table are explained
- below.
-
- Memory C TOOLS PLUS COMPILER.H BIOS Video COMPILER.MAC DOS.MAC
- Model Library File Module File File
- ------ ------------ ------------ ---------- ------------ -------------
-
- Lattice C versions 3.00 and later:
-
- S CTP_L3S.LIB COMPILER.L3S BV_L3S.OBJ COMPILER.AL3 SM8086.MAC(*)
- P (CTP_L3P.LIB) COMPILER.L3P (BV_L3P.OBJ) COMPILER.AL3 PM8086.MAC(*)
- D (CTP_L3D.LIB) COMPILER.L3D (BV_L3D.OBJ) COMPILER.AL3 DM8086.MAC(*)
- L CTP_L3L.LIB COMPILER.L3L BV_L3L.OBJ COMPILER.AL3 LM8086.MAC(*)
-
- Microsoft C versions 3.00 and 4.00:
-
- S CTP_M4S.LIB COMPILER.M3S BV_M4S.OBJ COMPILER.AM3 M3S.MAC
- M CTP_M4M.LIB COMPILER.M3M BV_M4M.OBJ COMPILER.AM3 M3M.MAC
- C CTP_M4C.LIB COMPILER.M4C BV_M4C.OBJ COMPILER.AM3 M4C.MAC
- L CTP_M4L.LIB COMPILER.M3L BV_M4L.OBJ COMPILER.AM3 M3L.MAC
- H CTP_M4L.LIB COMPILER.M3L BV_M4L.OBJ COMPILER.AM3 M3L.MAC
-
- (Note: Files in parentheses () are not normally supplied but are available
- on request or can be built by the user. (*) indicates files that are
- supplied with the compiler.)
-
- Memory Model: This affects the maximum data and code size in your program
- and the nature of data and code pointers. For Microsoft C, the memory model
- is specified via the /A compiler option; for Lattice C, via the -m option.
- If you do not specify a memory model, the compiler assumes S model.
-
- Library: These files are precompiled versions of all the C TOOLS PLUS
- functions. To link them into your programs, specify the proper library file
- on the linker command line.
-
-
- Page 1
-
-
-
-
- C TOOLS PLUS 3.02 BLAISE COMPUTING
-
-
- COMPILER.H file: This specifies the C compiler and memory model. It is
- required when compiling with C TOOLS PLUS header (.H) files. Select the
- correct version and copy it to COMPILER.H.
-
- BIOS video module: The C TOOLS PLUS Generic Video functions (GV) are
- supplied in two versions. The versions in the library perform direct access
- to video memory. If you prefer the versions that perform all video I/O via
- the BIOS, link your program with the BV_???.OBJ object module specified by
- the table.
-
- COMPILER.MAC file: This specifies the C compiler for C TOOLS PLUS modules
- written in assembly language. If you reassemble any C TOOLS PLUS assembler
- modules, first copy the correct file to COMPILER.MAC.
-
- DOS.MAC file: Many C TOOLS PLUS assembly language modules include the header
- file DOS.MAC. DOS.MAC specifies the memory model and defines certain macros.
- If you reassemble any C TOOLS PLUS assembler modules, first copy the correct
- file to DOS.MAC.
-
- A NOTE ON MICROSOFT C VERSIONS 3.00 AND 4.00
-
- Although the table above seems to mix versions 3.00 and 4.00 inconsistently,
- you may follow the table with confidence. We have found that all C TOOLS
- PLUS files work equally well with both versions of the Microsoft C compiler
- and libraries, no matter which version was used to compile them.
-
- In your source code, you may use the symbol MSC300 to indicate both versions
- of Microsoft C.
-
- A NOTE ON H (HUGE) MODEL
-
- For the H model of Microsoft C, use the CTP_M4L.LIB (L model) library. This
- will provide reliable support for most programs but not for data objects
- (such as arrays) exceeding 65536 bytes in size. If you must handle such huge
- objects using C TOOLS PLUS functions, use COMPILER.M3L (L model version) for
- your COMPILER.H file, recompile all C TOOLS PLUS modules using the /AH
- compiler option, and build a new library.
-
- WARNING: USE OF FLOATING POINT IN HARDWARE ISRs
-
- Handlers for hardware interrupts may be invoked at random times, perhaps when
- some other program is using the 8087 or 80287 math coprocessor. For this
- reason hardware interrupt service routines (ISRs) must leave the state of the
- 8087 unchanged. The easiest way to do so is to select a floating point math
- library that does not use the 8087, as follows:
-
- For Lattice C version 3.00 and later, link your program with NONDP.LIB ahead
- of the standard C math library. Use the version of NONDP.LIB that
- corresponds to your memory model.
-
-
-
-
-
-
-
-
-
- Page 2
-
-
-
-
- C TOOLS PLUS 3.02 BLAISE COMPUTING
-
-
-
- For Microsoft C version 3.00 or 4.00, compile your program with the /FPa
- option and link it with the alternate math library (supplied with the C
- compiler). Imitate the following example for Microsoft C version 3.00:
-
- link/nod myprog,,,ctp_m4s+slibfa+slibc; [Small model]
-
- or the following example for version 4.00:
-
- link/nod myprog,,,ctp_m4s+slibfa+slibc+libh; [Small model]
-
- For the Microsoft C compiler, avoid floating point arithmetic in C (Compact),
- L (Large), or H (Huge) model ISRs, because the floating point library
- routines assume that the DS and SS registers contain the same value. This
- assumption is violated when an ISR is invoked because the ISR is given a
- stack of its own. (You may be able to use floating point arithmetic if you
- use static variables instead of auto variables, but this is tricky.) The
- same warning applies to ISRs compiled with other variations of the /Afxx and
- /Ahxx mixed models.
-
- CONSTRUCTION NOTES
-
- All Lattice C modules were compiled with version 3.10 of the compiler using
- only the -m option, which specifies the memory model. All assembler modules
- were assembled with version 3.00 of the Microsoft Macro Assembler specifying
- no options. The libraries were built with version 3.04 of the Microsoft
- Library Manager (LIB) specifying no options.
-
- All Microsoft C modules were compiled with version 4.00 of the compiler using
- only the /A option (which specifies the memory model), the /W2 option, and
- the /DLINT_ARGS option. All assembler modules were assembled with version
- 3.00 of the Microsoft Macro Assembler using only the /mx option ("preserve
- case in public and external names"). The libraries were built with version
- 3.04 of the Microsoft Library Manager specifying no options.
-
- The demonstration programs FONT, SAVESCN, WNEXAMPL, and ZAP were compiled
- with Microsoft C, version 4.00, S model, and linked with the Microsoft linker
- version 3.51 using only the /NOIGNORECASE option.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Page 3
-
-
-
-
- C TOOLS PLUS 3.02 BLAISE COMPUTING
-
-
- CONTENTS OF DISKETTES
-
- Disk Filename Description
- ---- ------------ -----------------------------------------
- 1 README DOC This file
- 3 CHANGES DOC List of changes since version 3.00
- 5 CTPLIB DOC List of standard library functions, variables,
- and macros used by C TOOLS PLUS
-
- 2 CTPCVM DOC Instructions for modifying C VIEW MANAGER
- for use with C TOOLS PLUS
- 2 CVMFIX BAT Batch file for modifying C VIEW MANAGER
- libraries for use with C TOOLS PLUS
- 3 LREMOVE Utility files used by CVMFIX.BAT
- 3 MSREMOVE
-
- 2 RUNPRINT BAT Batch file to print source code
- 2 CONCAT COM Utility program to print source code
- 2 CTP FIL List of source files for use by CONCAT.COM
-
- 3 CTP_L3S LIB Lattice C 3.10 libraries
- 3 CTP_L3L LIB (for use with Lattice C version 3.00 and later)
-
- 1 CTP_M4S LIB Microsoft C 4.00 libraries
- 1 CTP_M4M LIB (for use with Microsoft C versions 3.00 and 4.00)
- 2 CTP_M4C LIB
- 2 CTP_M4L LIB
-
- 1 BLAISE H Universal header file
-
- Header files for function categories:
- 1 BAPPLIC H AP Application functions
- 1 BDIRECT H DR Directory maintenance
- 1 BFILE H FL File handling
- 1 BGENVID H GV Generic video
- 1 BGRAPH H GR Graphics
- 1 BISR H IS Interrupt service support
- 1 BKEYBD H KB Keyboard support
- 1 BMEMORY H MM Memory management
- 1 BPROGCTL H PC Program control
- 1 BQUERY H QY DOS query function
- 1 BSCREEN H SC Screen handling
- 1 BSTRING H ST String handling
- 1 BUTILITY H UT Utility functions and macros
- 1 BVIDEO H VI Direct video access
- 1 BWINDOW H WN Window management
-
- 1 BBIOSVID H Version of BGENVID.H specifying BIOS video
- services
-
-
-
-
-
-
-
-
-
- Page 4
-
-
-
-
- C TOOLS PLUS 3.02 BLAISE COMPUTING
-
-
- 1 APPLICAT H Replacements for header files used with
- 1 DOSINFO H C TOOLS and C TOOLS 2
- 1 FILEHAND H
- 1 GRAPH H
- 1 PROGCTRL H
- 1 SCREEN H
- 1 SUTILITY H
- 1 UTILITY H
-
- 1 BV_L3S OBJ Object files to force BIOS video instead of
- 1 BV_L3L OBJ direct video access
- 1 BV_M4S OBJ
- 1 BV_M4M OBJ
- 1 BV_M4C OBJ
- 1 BV_M4L OBJ
-
- 1 COMPILER L3S COMPILER.H header files to specify compiler and
- 1 COMPILER L3P memory model
- 1 COMPILER L3D
- 1 COMPILER L3L
- 1 COMPILER M3S
- 1 COMPILER M3M
- 1 COMPILER M4C
- 1 COMPILER M3L
-
- 3 COMPILER AL3 COMPILER.MAC header files to specify compiler
- 3 COMPILER AM3
-
- 3 M3S MAC DOS.MAC header files to specify memory model for
- 3 M3M MAC assembler modules supporting Microsoft C
- 3 M4C MAC version 3.00 or 4.00
- 3 M3L MAC
-
- 3 FONT C Source files for demonstration programs FONT,
- 3 SAVESCN C SAVESCN, and ZAP
- 2 ZAP C
- 3 FONT EXE Executable demonstration programs compiled with
- 3 SAVESCN EXE Microsoft C 4.00, S model
- 2 ZAP EXE
-
- 2 WNEXAMPL C Source code for window example program from manual
- 2 WNEXAMPL EXE Executable version of WNEXAMPL, compiled with
- Microsoft C 4.00, S model
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Page 5
-
-
-
-
- C TOOLS PLUS 3.02 BLAISE COMPUTING
-
-
- 5 BDSX ASM Source files for library functions
- 5 BIOS ASM that are written in assembly language
- 5 CASEMAP ASM
- 5 DOS ASM
- 5 ISCALINT ASM
- 5 ISCT2INT ASM
- 5 ISDISPAT ASM
- 5 KBPLACE ASM
- 5 KBQUEUE ASM
- 5 UTDEFDS ASM
- 5 UTINTOFF ASM
- 5 UTINTON ASM
- 5 UTMOVE ASM
- 5 UTSREG ASM
- 5 VIDIRECT ASM
-
- 4 \C\BV C Source file for BV_???.OBJ object modules
-
- 4 \C\APCOMLIN C Source files for library functions
- 4 \C\APPROMPT C that are written in C
- 4 \C\APQUERY C
- 4 \C\APRDNUM C
- 4 \C\APRDTEXT C
- 4 \C\APYESNO C
- 4 \C\DRCHDIR C
- 4 \C\DRCURDIR C
- 4 \C\DRDT2STP C
- 4 \C\DRMKDIR C
- 4 \C\DRREMVOL C
- 4 \C\DRRENAME C
- 4 \C\DRRETDRV C
- 4 \C\DRRETSTP C
- 4 \C\DRRETVOL C
- 4 \C\DRRMDIR C
- 4 \C\DRSETDRV C
- 4 \C\DRSETSTP C
- 4 \C\DRSETVOL C
- 4 \C\DRSFIRST C
- 4 \C\DRSNEXT C
- 4 \C\DRSTP2DT C
- 4 \C\DRSTP2TM C
- 4 \C\DRTM2STP C
- 4 \C\FLCLOSE C
- 4 \C\FLCREATE C
- 4 \C\FLDELETE C
- 4 \C\FLNEW C
- 4 \C\FLNORM C
- 4 \C\FLOPEN C
- 4 \C\FLREAD C
- 4 \C\FLRETATR C
- 4 \C\FLRETDTA C
- 4 \C\FLSEEK C
- 4 \C\FLSETATR C
- 4 \C\FLSETDTA C
- 4 \C\FLTEMP C
- 4 \C\FLWRITE C
-
-
- Page 6
-
-
-
-
- C TOOLS PLUS 3.02 BLAISE COMPUTING
-
-
- 4 \C\GRAMOVE C
- 4 \C\GRINIT C
- 4 \C\GRLINE C
- 4 \C\GRPTREAD C
- 4 \C\GRPTWRIT C
- 4 \C\GRRMOVE C
- 4 \C\GVATRECT C
- 4 \C\GVHORIZ C
- 4 \C\GVRDRECT C
- 4 \C\GVSCROLL C
- 4 \C\GVWRRECT C
- 4 \C\ISDETECT C
- 4 \C\ISINSTAL C
- 4 \C\ISINVINT C
- 4 \C\ISISRSTK C
- 4 \C\ISRETVEC C
- 4 \C\ISSETISR C
- 4 \C\ISSETVEC C
- 4 \C\KBFLUSH C
- 4 \C\KBIN C
- 4 \C\KBREADY C
- 4 \C\KBSHIFT C
- 4 \C\KBSTUFF C
- 4 \C\MMALLOC C
- 4 \C\MMAVAIL C
- 4 \C\MMFREE C
- 4 \C\MMSETBLK C
- 4 \C\MMSHRINK C
- 4 \C\MMTOTAL C
- 4 \C\PCDOSCMD C
- 4 \C\PCENVCHK C
- 4 \C\PCEXEC C
- 4 \C\PCEXIT C
- 4 \C\PCREMOVE C
- 4 \C\PCRESEXT C
- 4 \C\PCWAIT C
- 4 \C\QYCTLBRK C
- 4 \C\QYDISKSP C
- 4 \C\QYDOSVER C
- 4 \C\QYERROR C
- 4 \C\QYGCOUN C
- 4 \C\QYMODEL C
- 4 \C\QYRETDAT C
- 4 \C\QYRETTIM C
- 4 \C\QYSCOUN C
- 4 \C\QYSETDAT C
- 4 \C\QYSETTIM C
- 4 \C\QYVERIFY C
- 4 \C\SCACTPG C
- 4 \C\SCAPAGE C
- 4 \C\SCATRECT C
- 4 \C\SCATTRIB C
- 4 \C\SCBOX C
- 4 \C\SCCHGDEV C
- 4 \C\SCCLEAR C
- 4 \C\SCCLRMSG C
-
-
- Page 7
-
-
-
-
- C TOOLS PLUS 3.02 BLAISE COMPUTING
-
-
- 4 \C\SCCURPOS C
- 4 \C\SCCURSET C
- 4 \C\SCCURSOR C
- 4 \C\SCCURST C
- 4 \C\SCDSPMSG C
- 4 \C\SCEQUIP C
- 4 \C\SCHORIZ C
- 4 \C\SCMODE C
- 4 \C\SCNEWDEV C
- 4 \C\SCPAGE C
- 4 \C\SCPAGES C
- 4 \C\SCPCLR C
- 4 \C\SCPGCUR C
- 4 \C\SCPSCROL C
- 4 \C\SCRDBUF C
- 4 \C\SCRDRECT C
- 4 \C\SCREAD C
- 4 \C\SCRESET C
- 4 \C\SCROWS C
- 4 \C\SCSCROLL C
- 4 \C\SCTTYWIN C
- 4 \C\SCTTYWRT C
- 4 \C\SCWRAP C
- 4 \C\SCWRBUF C
- 4 \C\SCWRITE C
- 5 \C\SCWRRECT C
- 5 \C\SCWRSTR C
- 5 \C\STBFOLD C
- 5 \C\STCFILL C
- 5 \C\STCJULDT C
- 5 \C\STCLEFT C
- 5 \C\STCMID C
- 5 \C\STCRIGHT C
- 5 \C\STCSUB C
- 5 \C\STPCVT C
- 5 \C\STPDETAB C
- 5 \C\STPENTAB C
- 5 \C\STPFDATE C
- 5 \C\STPFTIME C
- 5 \C\STPJUST C
- 5 \C\STPMONEY C
- 5 \C\STPWORD C
- 5 \C\STPXLATE C
- 5 \C\STSCHIND C
- 5 \C\STSDATE C
- 5 \C\STSINDEX C
- 5 \C\STSTIME C
- 5 \C\STSVERFY C
- 5 \C\UTABORT C
- 5 \C\UTABSPTR C
- 5 \C\UTCODPTR C
- 5 \C\UTGETCLK C
- 5 \C\UTINIT C
- 5 \C\UTPAUSE C
- 5 \C\UTRND C
- 5 \C\UTSLEEP C
-
-
- Page 8
-
-
-
-
- C TOOLS PLUS 3.02 BLAISE COMPUTING
-
-
- 5 \C\UTSLMOVE C
- 5 \C\UTSOUND C
- 5 \C\UTSPKOFF C
- 5 \C\UTSPKON C
- 5 \C\VIADS C
- 5 \C\VIATRECT C
- 5 \C\VIHORIZ C
- 5 \C\VIRDRECT C
- 5 \C\VISCROLL C
- 5 \C\VIWRRECT C
- 5 \C\WNATTR C
- 5 \C\WNCOVER C
- 5 \C\WNCREATE C
- 5 \C\WNCURMOV C
- 5 \C\WNCURPOS C
- 5 \C\WNCURSOR C
- 5 \C\WNDSPLAY C
- 5 \C\WNDSTROY C
- 5 \C\WNERROR C
- 5 \C\WNFORGET C
- 5 \C\WNGETIMG C
- 5 \C\WNGETOPT C
- 5 \C\WNHIDE C
- 5 \C\WNHORIZ C
- 5 \C\WNMKIMG C
- 5 \C\WNOVRLAP C
- 5 \C\WNPGADD C
- 5 \C\WNPGREM C
- 5 \C\WNPUTBOR C
- 5 \C\WNPUTIMG C
- 5 \C\WNQUERY C
- 5 \C\WNRDBUF C
- 5 \C\WNREDRAW C
- 5 \C\WNREMOVE C
- 5 \C\WNSCROLL C
- 5 \C\WNSELDEV C
- 5 \C\WNSELECT C
- 5 \C\WNSETOPT C
- 5 \C\WNUNHIDE C
- 5 \C\WNUPDATE C
- 5 \C\WNVALNOD C
- 5 \C\WNVALWIN C
- 5 \C\WNWRAP C
- 5 \C\WNWRBUF C
- 5 \C\WNWRTTY C
-
-
-
-
-
-
-
-
-
-
-
-
-
- Page 9
-
-
-