.SBTTL; ; Copyright (c) 1998 by Mentec, Inc., Nashua, NH. ; All rights reserved ; ; This software is furnished under a license for use only on a ; single computer system and may be copied only with the ; inclusion of the above copyright notice. This software, or ; any other copies thereof, may not be provided or otherwise ; made available to any other person except for use on such ; system and to one who agrees to these license terms. Title ; to and ownership of the software shall at all times remain ; in Mentec, Inc. ; ; The information in this document is subject to change without ; notice and should not be construed as a commitment by Digital ; Equipment Corporation, or Mentec, Inc. ; ; Digital and Mentec assume no responsibility for the use or ; reliability of its software on equipment which is not supplied ; by Digital or Mentec, and listed in the Software Product ; Description. .SBTTL .SBTTL DBG Configuration Prefix File .SBTTL .SBTTL Symbolic configuration definitions D$$DBG =: 1 ;This is DBG! RT11 =: 0 ;System code definitions RSX11M =: 1 LA36 =: 0 ;Terminal type definitions VT100 =: 1 VT52 =: 2 HARD =: 0 ;I/O mode definitions SOFT =: 1 .SBTTL Configuration options SYSTEM =: RT11 ;Host system type IOMODE =: HARD ;Host I/O mode TTYPE =: VT100 ;Terminal support E$$TXT =: 1 ;Enable LONG error messages $$$PIC =: 1 ;All PIC code D$$OUT =: 1 ;Special GET/PUT memory access support D$$DRV =: 1 ;RT-11 SD: driver configuration SD$$VM =: 1 ;SD/VM combo R$$PRO =: 1 ;Support for P/OS processor .SBTTL Setup defaults in the absence of option definitions ; Various modes that always default to false if not defined .IIF NDF $$$PIC, $$$PIC =: 0 ;Default NOT a PIC version .IIF NDF $$$ROM, $$$ROM =: 0 ;Mix I and D space to save some words .IIF NDF D$$OUT, D$$OUT =: 0 ;Not out of address space by default .IIF NDF D$$DRV, D$$DRV =: 0 ;Not RT-11 SD: driver configuration .IIF NDF D$$DAS, D$$DAS =: 0 ;No I/D space support .IIF NDF RSTS, RSTS =: 0 ;Default to no RSTS/E code .IIF NDF $DEBUG, $DEBUG =: 0 ;Default to NO debug mode .IIF NDF $GLOBS, $GLOBS =: 0 ;Dont declare globals .IIF NDF E$$TXT, E$$TXT =: 0 ;Default to short error messages .IIF NDF S$$STB, S$$STB =: 0 ;Default to no .STB file code .IIF NDF R$$PRO, R$$PRO =: 0 ;Default to no P/OS support. ; Default to FIS instruction set support for RT-11 unmapped debugger ; Default to use EIS instruction if not the RT-11 unmapped debugger .IF EQ,<!!> F$$FIS =: 1 ;Include FIS support. E$$EIS =: 0 ;Do not use EIS instruction set .IFF; EQ,<!!> F$$FIS =: 0 ;Do not include FIS support. E$$EIS =: 1 ;Use EIS instruction set .ENDC; EQ,<!!>