IMD 1.17: 4/01/2010 17:58:50 wordstar rel 4 readme 4 of 6 >É2ÿýÍÿý!þÿ9^#V!ë1ÿÓöÍÃ Not a SYSTEM Diskette. (^À á>É2ÿýÍÿý!þÿ9^#V!ë1ÿÓöÍÃ Not a SYSTEM Diskette. (^À áååååååååPATCH LST€ PATCH LST€ !PATCH LST"#READ ME €$%&'()*+,-./0123READ ME €456789:;<=>?@ABCREAD ME gDEFGHIJååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååå ; ;In order to minimize changes to the locations of User area ;data, the origin is forced here to 180H above the start of ;the TPA. ; ORG TPA+180H ;Always start user area in same spot ; ;This jump table provides commonly used subroutines for use ;by custom subroutines in the User areas. It must not be ;modified in any way. ; ; ;To output a character to the terminal from within your ; custom subroutines, call DISPLA with the character ; to be output in the accumulator (A register). All ; registers will be preserved. ; 0280 DISPLA:: 0280 C3 0CB6 JMP CO ;Display character routine ; ;To output a string to the terminal that is in the normal ; user area format (count followed by bytes), call ; STRING with HL pointing to the string to be output. ; Upon returning, HL points to the byte following the ; string. ; 0283 STRING:: 0283 C3 17C6 JMP STROUT ;Display string routine ; ;To useåå WordStar's standard list output drivers, call the ; following subroutines. In all cases, all registers ; except for the PSW are unchanged by the subroutines. ; 0286 LSTOUT: ;Prints char in A. 0286 C3 0000* JMP LO 0289 LSOSTA: ;Returns output status to A (0 if busy). 0289 C3 0000* JMP LOSTAT 028C LSTIN: ;Inputs char from printer to A. (Only 028C C3 0000* JMP LI ;works if custom ULISTI exists.) 028F LSISTA: ;Returns input status to A (0 if no char). 028F C3 0000* JMP LISTAT ;(Only works if custom ULISTA.) 0292 LSTRNG: ;Send string to list device. (HL points 0292 C3 0000* JMP LSTSTR ;to string, count byte first, just like ;console strings). ; ;This flag is used if WordStar is on a multi-user system. It should ;be set to zero on single-user systems. Each bit of MPMFLG is used ;as follows: ; ar ; assumes that only one user is on the computer at a time. ; If the operating system itself can load share adequately ; (such as MP/M 8/16 systems), set this bit to 0. ; ; 4-6 Reserved. ; ; 7 If 1, TurboDOS 1.3 operating system. WordStar will not ; check the disk drive write protect vector, will not check ; printer busy status, and will issue the TurboDos printer ; detach call when done printing. If 0, CP/M or MP/M. ; WordStar does not support TurboDos 1.2. ; ;If you are using MP/M, bits 0, 1 and 2 should all be set to 1. Bit 3 ;should be set for older versions of MP/M. If you are running on a ;networked system, only bit 1 should be set. If you are using TurboDos ;1.3 in a multi-user environment, bits 1 and 7 should be set. If you ;are using single-user TurboDos, only bit 7 should be set. ; 0295 MPMFLG:: 0295 00 DB 0 ;Zero for single-user systems 0296 00 DB 0 ;Reserved ; ;SHA ;takes 1/960 of a second to send, or close to one millisecond. That ;means that three characters would take approximately three milliseconds. ;There is no way that even the fastest human typist could type that ;fast! Therefore, this method will usually work. ; ;Each function key in the table below is represented by two strings. ;The first describes the "burst" from the key. The second is what it ;should be translated into. You may not use string indirections in ;this table (size of -1 followed by address). ; ;The end of the function key table is indicated when the size of the ;function key string is zero. If you have more function keys than will ;fit, you can put a continuation address after the zero to point to more ;table. The table at that address must be the same format as this ;one. No continuation is indicated by an address of zero. ; ;One character "bursts" will not work here. If you need to translate ;a single character into something else,  ; Bit Meaning ; ; ; 0 If 0, WordStar will issue a SYSTEM RESET when logging ; onto a removable disk drive. If 1, no reset will ; occur, and the operating system itself must handle ; any disk swapping. ; ; 1 If 1, users can share documents. Before opening a ; document to edit, WordStar will check to see if temporary ; files with that document name (e.g. FILENAME.$A$) ; already exist. If such files exist, WordStar will open ; the document as a protected document, preventing any ; changes to it. If 0, WordStar will delete existing ; temporary files when opening the document for editing. ; ; 2 If 1, users can share printer. MP/M function calls are ; issued to attach and detach the list device. If 0, ; the printer is assumed to be always attached. ; ; 3 If 1, WordStar will issue frequent MP/M "dispatch to ; next task" function calls to assure that multiple users ; have balanced access to the computer. If 0, WordStRE specifies how WordStar will handle two users in a shared file ;system who attempt to edit the same file. If 0, the second user ;will be denied access to the file. If 1, the second user can ;view as much of the file as can be loaded into memory, but he ;cannot modify the file. ; 0297 SHARE:: 0297 01 DB 1 ;Allow viewing (protected edit) 0298 00 00 00 DB 0,0,0 ;Reserved ; ;The function key table allows you to program any function keys that ;your terminal supports into one or more other keystrokes. Note that ;on many terminals, the function keys generate a sequence of characters ;where the first character is a control code. Since WordStar probably ;uses this same code for one its commands, a timer is used to determine ;when the "burst" of characters from the function key is done. ;This works because the terminal will usually send the function ;key characters at close to full baud rate. At 9600 baud, each character use the user console input ;routine UCONI. ; ;Warning! Terminals or computers that have their own type-ahead ;buffering may cause problems with this approach since it will be more ;likely that characters other than just function keys will be "burst" ;into WordStar by it. ; 029B FUNDLY:: 029B 00 DB 0 ;Milliseconds of delay between characters ;of function key burst (if zero, no ;function keys are implemented). See ;section on delays below before adjusting ;FUNDLY for your system. 029C 01 DB CTRLA ;Character that starts each burst ;(set to 0FFh to disable) 029D FUNTBL:: 029D 03 DB 3 ;Three chars in burst 029E 01 40 0D DB CTRLA,'@',CR ;Function key 1 02A1 02 DB 2 ;Two chars in replacement 02A2 0B 42 DB CTRLK,'B' ;Mark beginning of block 02A4 03 ction key 8 02D2 01 DB 1 02D3 0C DB CTRLL ;Repeat last find or replace again 02D4 03 DB 3 02D5 01 48 0D DB CTRLA,'H',CR ;Function key 9 02D8 02 DB 2 02D9 0B 44 DB CTRLK,'D' ;Save document 02DB 03 DB 3 02DC 01 49 0D DB CTRLA,'I',CR ;Function key 10 02DF 02 DB 2 02E0 0B 51 DB CTRLK,'Q' ;Abandon editing 02E2 03 DB 3 02E3 01 4A 0D DB CTRLA,'J',CR ;Function key 11 02E6 06 DB 6 02E7 11 46 10 DB CTRLQ,'F',CTRLP ;Find end of paragraph 02EA 0D 0D 0D DB CR,CR,CR 02ED 03 DB 3 02EE 01 4B 0D DB CTRLA,'K',CR ;Function key 12 02F1 08 DB 8 02F2 11 46 10 DB CTRLQ,'F',CTRLP ;Find beginning of paragraph 02F5 0D 0D 42 0D DB CR,CR,'B',CR,CTRLD 02F9 04 02FA 00 DB 0 ;End of table 02FB 0000 DW 0 ;No continuation REPT 128-($-FUNTBL) ;Allowh must then be of the ; normal format which is the number of bytes followed ; by the string. ; ;This area is normally patched for your specific terminal ; by the interactive INSTALL program. Additional ; patching to this area is needed only for unusual ; terminals or video boards, or to meet special ; requirements, or to enhance or personalize your ; copy of WordStar. The default user area is ; set up for this example installation. ; ; ;Video screen height, width, and wrap-around parameters are required. ; 031F HITE:: 031F 18 DB 24 ;Must be exact screen height in lines. 0320 WID:: 0320 50 DB 80 ;Must be <= exact screen width in columns. 0321 WRAP:: 0321 FF DB TRUE ;Indicates if terminal wraps around to next ;line if a character is displayed in WIDth ;column of screen (set FALSE if it doesn't) 0322 XONOFF:: 0322 FF DDB 3 02A5 01 41 0D DB CTRLA,'A',CR ;Function key 2 02A8 02 DB 2 02A9 0B 4B DB CTRLK,'K' ;Mark end of block 02AB 03 DB 3 02AC 01 42 0D DB CTRLA,'B',CR ;Function key 3 02AF 02 DB 2 02B0 0B 43 DB CTRLK,'C' ;Copy marked block 02B2 03 DB 3 02B3 01 43 0D DB CTRLA,'C',CR ;Function key 4 02B6 02 DB 2 02B7 0B 56 DB CTRLK,'V' ;Move marked block 02B9 03 DB 3 02BA 01 44 0D DB CTRLA,'D',CR ;Function key 5 02BD 02 DB 2 02BE 0B 59 DB CTRLK,'Y' ;Delete marked block 02C0 03 DB 3 02C1 01 45 0D DB CTRLA,'E',CR ;Function key 6 02C4 02 DB 2 02C5 11 46 DB CTRLQ,'F' ;Find string 02C7 03 DB 3 02C8 01 46 0D DB CTRLA,'F',CR ;Function key 7 02CB 02 DB 2 02CC 11 41 DB CTRLQ,'A' ;Search and replace 02CE 03 DB 3 02CF 01 47 0D DB CTRLA,'G',CR ;Fun 128 bytes for table DB 0 ENDM 031D 00 00 DB 0,0 ;Reserved ; ; TERMINAL PATCH AREA ; ;This section contains the user-modifiable constants and ; routines for hardware-dependent terminal functions ; and characteristics required by the editor. ; ;There are three types of patches in this area. One can ; patch data values (HITE, WID) which describe the ; terminal, strings (CLEAD1, ERAEOL) which define ; control sequences, or actual microprocessor ; instructions. ; ;For the string sequences, the first byte of the patch ; indicates the number of bytes in the string, ; followed by that many string bytes. If there is ; insufficient room for the whole string, the format ; can be modified by putting a -1 (0FFH) where the ; number of bytes would go, and then putting the ; address in the following two bytes (low order byte ; first) of the address where the longer patch ; resides. The longer patcB TRUE ;TRUE if XON/XOFF protocol to be used for ;the CRT terminal 0323 SCROLL:: 0323 14 DB 20 ;Number of columns that are horizontally ;scrolled when cursor moves beyond right ;or left side of screen. 0324 DIRSIZ:: 0324 05 DB 5 ;Number of lines available for directory ;at bottom of screen. If zero, no directory. 0325 0B DB 11 ;Larger directory for document selection ; ;Delete Display String ; ;The following string indicates to WordStar how to display a delete ;character (hex 7F) on the screen while editing. On terminals that ;interpret the delete character code into a displayable character, it ;is recommended that DELSTR be translated into the delete code itself ;(length of 1, then 7FH). All characters in the string must display. ; 0326 DELSTR:: 0326 03 DB 3 ;NuKBLOCK:: 0337 03 DB 3 ;Three chars 0338 3C 4B 3E DB '' ;End block 033B 00 DB 0 ;1 spare ; ;Special character used when displaying soft spaces with ^OB. ; 033C SOFTSP:: 033C 2B DB '+' ;Soft spaces show up as plus signs 033D 00 00 00 00 DB 0,0,0,0,0 ;Reserved 0341 00 ; ;The following string is used at sign-on to describe the type ;of terminal being used by WordStar. Up to 40 bytes are available ;for the string, including its null terminator. ; 0342 CRTID:: 0342 55 6E 69 6E DB 'Uninstalled Terminal',CR,LF,0 ;Terminal name 0346 73 74 61 6C 034A 6C 65 64 20 034E 54 65 72 6D 0352 69 6E 61 6C 0356 0D 0A 00 0359 20 20 20 20 DB ' ' ;Extra room 035D 20 20 20 20 0361 20 20 20 20 0365 20 20 20 20 0369 20 ; ;Cursor positioning control sequences are required. ; ;Cursor positioning for most terminals is accomplished ; by sending:  ;Space for two more characters 036F CLEAD2:: ;Sent between line and column 036F 00 DB 0 ;Number of characters, none in our 0370 00 DB 0 ;example. First character 0371 00 00 00 DB 0,0,0 ;Space for three more characters 0374 CTRAIL:: ;Terminating string 0374 00 DB 0 ;Number of characters 0375 00 00 00 00 DB 0,0,0,0 ;Space for four characters 0379 CB4LFG:: ;Send column before line? 0379 00 DB 0 ;Set non-zero to send column first 037A CUROFF:: ;Cursor offsets ;Offset to add to line 037A 20 DB 20H ;Add 20H to line number (0 is top ;line of screen before offset) ;Offset to add to column 037B 20 DB 20H ;Add 20H to column number (0 is ;left-most column of screen ;before offset) mber of chars in string 0327 44 45 4C DB 'DEL' ;What is displayed 032A 00 00 DB 0,0 ;Spare bytes ; ;Soft and End of Line Hyphen Display String ; ;In order to distinguish soft hyphens from normal hyphens in the text, ;WordStar will substitute the following string when one is encountered. ; 032C SHYSTR:: 032C 01 DB 1 ;Number of chars in string 032D 3D DB '=' ;What is displayed 032E 00 00 00 00 DB 0,0,0,0 ;Spare bytes ; ;Block Marker Strings ; ;Block marker strings are displayed on the screen to show the start and ;end of a block of text. The strings are in the typical format of the ;length followed by as many characters. Control characters should not ;be included within these strings because they would not be sent ;directly to the screen. ; 0332 BBLOCK:: 0332 03 DB 3 ;Three chars 0333 3C 42 3E DB '' ;Begin block 0336 00 DB 0 ;1 spare ; 0337  ; ; 1. A 'lead-in' string of one or more terminal ; specific characters. ; 2. The line number, with an offset (often 20H) added. ; For some terminals, the column number is ; sent first. ; 3. For some terminals, another 'lead-in' string. ; 4. The column (or line) number, with an offset. ; 5. For some terminals, a terminating string. ; ;For most terminals, the line and column number are sent ; as one-byte binary numbers. Some terminals require ; that a two- or three-digit ASCII number is sent. ; ;For terminals that do not fit the above patterns, you ; must code your own subroutine. ; ;For example, the cursor is positioned on this sample ; installation by sending: ; ; ESCAPE, '=', ; line number plus 20H, ; column number plus 20H. ; 036A CLEAD1:: ;Initial lead-in string 036A 02 DB 2 ;Number of characters 036B 1B DB ESC ;First character 036C 3D DB '=' ;Second character 036D 00 00 DB 0,0  037C ASCUR:: ;Binary/ASCII digit flag 037C 00 DB 0 ;0 to send binary line and column ;2 to send 2-digit ASCII numbers ;3 to send 3-digit ASCII numbers ; ;Provision for positioning cursor by user-coded ; subroutine, instead of under control of above ; items. For use in exceptional cases only. ; ;Insert a JMP instruction to your subroutine in the ; following three bytes. Whenever the first byte ; is non-NOP, this location will be called to ; position the cursor, and the above cursor patch ; items will be ignored. ; ;Your subroutine will receive the line number in the L ; register (0 = top line), the column number in ; the H register (0 = left-most column), and the ; video attributes at the next typing position in ; the A register. Attributes are represented as ; described for the VIDATT routine, except that the ; warning/error bit indicates double-strike. ; ;Yo ; line feeds, or update a screen of text using ERAEOL ; below. ; ;After the screen is erased, WordStar assumes that the video ; attributes are set to normal (dim for the example ; terminal), and that the cursor is at the home position ; (upper left hand corner). ; 0386 ERASCR:: 0386 03 DB 3 ;Number of characters 0387 1A DB CTRLZ ;First character (clear screen) 0388 1B 29 DB ESC,')' ;Additional characters (dim) 038A 00 00 00 00 DB 0,0,0,0,0,0 ;Room for 13 more 038E 00 00 0390 00 00 00 00 DB 0,0,0,0,0,0,0 0394 00 00 00 ; ;Backspace one character string. If this function is not ; available, leave the first byte zero, and WordStar ; will use cursor addressing to backspace. ; 0397 BAKSPC:: 0397 01 DB 1 ;Number of characters 0398 08 DB BS ;First character 0399 00 00 00 DB 0,0,0 ;Additional characters ; ;Erase to end of line string. If this function is not ; available, dditional characters ; ;Insert a blank line on the screen, moving the line ; containing the cursor, and the lines below it down ; one line. If this function is not available, leave ; the first byte zero, and WordStar will perform ; the function more slowly via software. ; 03AB LININS:: 03AB 02 DB 2 ;Number of characters 03AC 1B DB ESC ;First character 03AD 45 00 00 DB 'E',0,0 ;Additional characters ; ;WordStar will use LINDEL and LININS to delete or insert a group ; of lines rather than just displaying a whole new screenful ; of characters. LINMAX below indicates the maximum number ; of lines that this would generally be faster than the ; re-display. Set to zero if don't care. ; 03B0 LINMAX:: 03B0 05 DB 5 ;Five lines ; ;Terminal initialization string. A string of bytes which ; will be sent to the terminal at the beginning of a ; session. See also INISUB. ; 03B1 TRMINI::ur subroutine may alter all registers. ; 037D UCRPOS:: 037D 00 NOP ;Normally NOP, or JMP to your cursor 037E 00 NOP ;positioning routine. 037F C9 RET ; ;Displaying characters on some screens can be significantly faster if the ;cursor can be turned off. ; 0380 ONCUR:: ;Turn cursor on by changing to jump 0380 00 NOP ;to custom subroutine. 0381 00 NOP ; L = current cursor line 0382 C9 RET ; H = cursor column 0383 OFFCUR:: ;Turn cursor off by changing to jump 0383 00 NOP ;to custom subroutine. 0384 00 NOP ; L = current cursor line 0385 C9 RET ; H = cursor column ; ;Everything in the rest of this section is optional. ; The items relate either to enhanced performance, ; or for accomodating unusual terminals. ; ; ;Erase screen. If this function is not available, leave ; the first byte zero, and the WordStar will either send leave the first byte zero, and WordStar ; will perform the function more slowly via software. ; 039C ERAEOL:: 039C 02 DB 2 ;Number of characters 039D 1B DB ESC ;First character 039E 54 00 00 DB 'T',0,0 ;Additional characters ; ;Erase to end of screen string. If this function is not ; available, leave the first byte zero, and WordStar ; will perform the function more slowly via software. ; 03A1 ERAEOS:: 03A1 02 DB 2 ;Number of characters 03A2 1B DB ESC ;First character 03A3 59 00 00 DB 'Y',0,0 ;Additional characters ; ;Delete screen line containing the cursor, and move lower ; lines on the screen up one line. If this function ; is not available, leave the first byte zero, and ; WordStar will perform the function more slowly ; via software. ; 03A6 LINDEL:: 03A6 02 DB 2 ;Number of characters 03A7 1B DB ESC ;First character 03A8 52 00 00 DB 'R',0,0 ;A 03B1 FF DB -1 ;Number of bytes 03B2 0386 DW ERASCR ;Use extension mechanism (-1 as byte 03B4 00 00 DB 0,0 ;count) to erase screen as initialization. ; ;Terminal un-initialization string. A string of bytes ; which will be sent to the terminal at the end of a ; session. See also UNISUB. ; 03B6 TRMUNI:: 03B6 02 DB 2 ;Number of bytes 03B7 1B 28 DB ESC,'(' 03B9 00 00 DB 0,0 ; ;User-patchable initialization subroutine. Called before ; the TRMINI string is sent. This subroutine may be ; used for special console initialization or other ; purposes. See UCRPOS comments. ; 03BB INISUB:: 03BB 00 NOP ;Normally NOP, or JMP to 03BC 00 NOP ;your subroutine 03BD C9 RET ; ;User patchable un-initialization subroutine. Called ; before the TRMUNI string is sent. This subroutine ; may be used to 'undo' any special terminal status ; used for the WordStar. See UCses such diverse strings to change video ;attributes, you must provide a custom subroutine at VIDATT to ;build the proper one for yours. You may be able to take advantage ;of the fact that many terminals use a binary method to encode the ;attributes. If you do not wish to use any video attributes, put ;the customary two NOP's followed by a RET at VIDATT to disable it. ; ;The following implementation is for this sample installation. On that ;terminal the following sequences are required for the different ;attributes in our table: ; ; Attribute Sequence Screen Space ; ; Dim ESC ) NO ; Bright ESC ( NO ; Normal video ESC G 0 YES ; Blink ESC G 2 YES ; Inverse ESC G 4 YES ; Underline ESC G 8 YES ; Underline, blink ESC G : YES ; Underline, inverse ESC G < YES ; Underline, inverse, blink ESC G > YES ; ;However, since the ESC G attributes take up screen space, we cannot ;use them with Wordatus line, text and directories are displayed in ;dim intensity so that bold and doublestruck text can be shown in ;high intensity. Setting BRITE to 0FFH reverses the usage of ;bright and dim for the status line, text and directories ;zero ;normally. ; 0441 00 BRITE:: DB 0 ;Don't reverse ;0FFH = normal text bright ; ;Delays are executed after various terminal functions, before ; the next character is sent to the terminal, to ; allow response time required by certain terminals ; when operating at a high baud rate. Set to a ; larger value if you suffer a loss of characters ; after a terminal function. ; ;Note that an additional delay FUNDLY is located near the ; function key table FUNTBL above. ; ;Each delay is approximately the number of milliseconds ; on a 4 MHz Z80 processor, about twice as long on ; a 2 MHz 8080 (in other words, divide delay values ; in half for a 2 MHz processor to achieve the same ; resultRPOS comments. ; 03BE UNISUB:: 03BE 00 NOP ;Normally NOP, or JMP to 03BF 00 NOP ;your subroutine 03C0 C9 RET ; ;Video attributes are used in various places on the WordStar display. ;The following table describes what each bit of an attribute byte ;means when used within WordStar. Note that when no bit is set, that ;is the normal condition. ; ; Bit WordStar Usage ; ; none Normal text ; 0 Strike-out text ; 1 Warning & error messages ; 2 Marked block of text ; 3 Underlined text ; 4 Subscripted text ; 5 Superscripted text ; 6 Bold text ; 7 Italic (or ribbon color) ; ;For this sample installation, the following translation of attribute ;bits into video conditions could be used. ; ; WordStar Example ; ; Normal Dim ; Warning Blink ; Marked Inverse ; Underlined Underline ; Subscripted Bright ; Superscripted Bright ; Highlighted Bright ; ;Because each terminal uStar. Therefore, all attributes are highlighted ;using bright. ; ;The VIDATT subroutine is used to change video attributes on the screen. ;On entry, WordStar will supply the attributes that are on in the C ;register. You must translate them into whatever your particular terminal ;requires. The following implementation is a sample installation. ;This subroutine is called only when a video attribute changes. ; 03C1 VIDATT:: ;Change to NOP, NOP, RET if not needed 03C1 21 03D2 LXI H,vdim 03C4 0C INR C ;Normal video? 03C5 0D DCR C 03C6 CA 0283 JZ STRING ; 03C9 21 03CF LXI H,vbrite ;Highlight everything else 03CC C3 0283 JMP STRING ; 03CF 02 1B 28 vbrite: DB 2,ESC,'(' ;Bright 03D2 02 1B 29 vdim: DB 2,ESC,')' ;Dim REPT 128-($-VIDATT) ;Allow total of 128 bytes for VIDATT DB 0 ENDM ; ;Normally the sts). ; 0442 DELCUS:: 0442 00 DB 0 ;No delay after cursor positioning ;(if your terminal works better with ;5 milliseconds of delay, you would ;put a "5" here instead) 0443 DELMIS:: ;Miscellaneous screen delays 0443 00 DB 0 ;No delay 0444 DXOFF:: ;If XON/XOFF used for terminal, sometimes 0444 07D0 DW 2000 ;a legitimate ^S will be interpreted as an ;XOFF character. DXOFF is used to time out ;so that the terminal will continue. 0446 DLONG:: ;Long delays (like at sign-on) 0446 07D0 DW 2000 ;2 seconds = 2,000 milliseconds ;(1000 if 8080) 0448 DMED:: ;Medium delays (like at P, O, or K menus) 0448 03E8 DW 1000 ;1 second = 1,000 milliseconds ;(500 if 8080) 044A xample, to drive a video board that cannot be ; driven via output to the operating system. ; 0452 UCNSTA:: ;User console status subroutine. 0452 00 NOP ;Normally NOP, or JMP to your own 0453 00 NOP ;subroutine. Must return 0 in A if 0454 C9 RET ;no character ready, 0FFH if one is ;ready. 0455 UCONI:: ;User console input subroutine. 0455 00 NOP ;Normally NOP, or JMP to your own 0456 00 NOP ;subroutine. Must return the 0457 C9 RET ;character in A. May be called ;before a character is ready. If ;no character is ready, routine ;must wait until a character is ;available. 0458 UCONO:: ;User console output subroutine. 0458 00 NOP ;Normally NOP, or JMP to your own 0459 00 NOP ;subroutine. Subroutine receives 045A C9 RET 0 04AF 0000 0000 04B3 0000 0000 04B7 0000 0000 04BB 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 04BF 0000 0000 04C3 0000 0000 04C7 0000 0000 04CB 0000 0000 04CF 0000 0000 04D3 0000 0000 04D7 0000 0000 ; ;CRTPAT is a patch area that may be used by WordStar's installation ;program. ; 04DB CRTPAT:: 04DB 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 04DF 0000 0000 04E3 0000 0000 04E7 0000 0000 04EB 0000 0000 04EF 0000 0000 04F3 0000 0000 04F7 0000 0000 04FB 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 04FF 0000 0000 0503 0000 0000 0507 0000 0000 050B 0000 0000 050F 0000 0000 0513 0000 0000 0517 0000 0000 051B 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 051F 0000 0000 0523 0000 0000 0527 0000 0000 052B 0000 0000 052F 0000 0000 0533 0000 0000 0537 0000 0000 053B 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,0 DSHORT:: ;Short delays (like before help menus) 044A 00C8 DW 200 ;200 milliseconds (100 if 8080) 044C UPDLY:: ;Position update delay 044C 00C8 DW 200 ;200 milliseconds (100 if 8080) 044E DDISK:: ;Disk access delay. If character typed 044E 01F4 DW 500 ;during disk access, wait this duration for ;more characters. 500 milliseconds 0450 DFAST:: ;Delay when typing fast. Holds off displaying 0450 0032 DW 50 ;the rest of the line briefly ; ;Optional user-supplied console I/O subroutines. You may ; patch JMP's here to your own console input, console ; output, and console status subroutines, in which ; case these routines, instead of the operating ; system BIOS entry points, will be used for all ; console I/O. These subroutines may alter all registers. ; ;Use of a custom subroutine accessed here is suggested, ; for e ;the character in A, video attributes in ;B, and current cursor address in HL. ; ;This is 128 bytes set aside for anything that the user wishes to use. ;If more than 128 bytes are required, it is necessary to put them after ;the main WordStar code which can be determined by looking at the ;contents of BGNMEM to see where it is. After using as much space as ;necessary, change BGNMEM to the new beginning of free memory. ; 045B MORPAT:: 045B 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 045F 0000 0000 0463 0000 0000 0467 0000 0000 046B 0000 0000 046F 0000 0000 0473 0000 0000 0477 0000 0000 047B 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 047F 0000 0000 0483 0000 0000 0487 0000 0000 048B 0000 0000 048F 0000 0000 0493 0000 0000 0497 0000 0000 049B 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 049F 0000 0000 04A3 0000 0000 04A7 0000 0000 04AB 0000 000 0,00 053F 0000 0000 0543 0000 0000 0547 0000 0000 054B 0000 0000 054F 0000 0000 0553 0000 0000 0557 0000 0000 ; ;The following string is used to describe the name of the default ;printer used by WordStar. Up to 40 bytes are provided for the ;string, including its null terminator. ; 055B PRNID:: 055B 44 72 61 66 DB 'Draft Printer',CR,LF,0 ;Printer name 055F 74 20 50 72 0563 69 6E 74 65 0567 72 0D 0A 00 056B 20 20 20 20 DB ' ' ;Additional room 056F 20 20 20 20 0573 20 20 20 20 0577 20 20 20 20 057B 20 20 20 20 057F 20 20 20 20 ; ;WordStar uses a default printer driver if none is specified by the ;user. The following is its name. It may be up to six characters long, ;null terminated. ; 0583 DEFPRN:: 0583 44 52 41 46 DB 'DRAFT',0 ;Standard driver 0587 54 00 0589 20 DB ' ' ;One extra char ; ;The print delay timer is used to time how long the printer is busy ;before telli filetype ;in the EDCOND table elsewhere in the User Area. ; 058E PNODOC:: 058E 00 DB FALSE ;Don't print as a non-document ; ;Printer protocol flags. Only one of these flags may be set TRUE at ;one time. If neither flag is set, WordStar assumes all printer busy ;handshaking is done externally to WordStar (requires ULISTA and ULSTI ;subroutines below). ; 058F LXOFF:: ;Printer XON/XOFF protocol. 058F 00 DB FALSE 0590 LETX:: ;Printer ETX/ACK protocol. 0590 00 DB FALSE 0591 LCHRMX:: ;Maximum chars before sending ETX. 0591 80 DB 128 ;Half of buffer size. ; ;User list device output subroutines are used if the normal systems list ;device is not to be used. The user subroutine overrides the LSTDEV ;selection below. ; 0592 ULOSTA:: 0592 00 NOP ;User list output status subroutine. 0593 00 NOP ;Normally NOaracter in AL. ; ;Printer Output Selection ; ;When WordStar prints, it sends its output to one of the devices specified ;with LSTDEV. ; ; 00H = TTY device ; 01H = CRT device ; 02H = LPT device ; 03H = UL1 device ; FFH = Default LST device ; 059E LSTDEV:: 059E FF DB 0FFH ;Use LST device ; ;Before printing, WordStar will call ULPORT below to allow for custom ;print output redirection. A pointer to the name of the printer (null ;terminated, all capital letters) will be passed to the subroutine in HL. ;It is up to this subroutine to then route the printer output to the ;appropriate output port by whatever means is available to it. ; 059F ULPORT:: 059F 00 NOP ;Normally NOP if no redirection to be done. 05A0 00 NOP ;Change to JMP to your own subroutine. 05A1 C9 RET ; ;The user list device uninitialize routine is called after printing is ;completed, and can be used to restong the user that it's been busy a long time. This would ;primarily be used when the printer was in another room and you might ;not know that it was busy due to a paper jam or being off line. ; 058A PRNDLY:: ;Delay before saying printer busy 058A 0000 DW 0 ;Zero to disable ; ;Pausing between each page is used if single sheets of paper are being ;printed. ; 058C PPAUSE:: 058C 00 DB FALSE ;Continuous form (don't pause) ; ;Many printers can use form feeds to quickly get from one page to the ;next. If your printer can, setting PFFEED to TRUE will cause WordStar ;to use form feeds instead of carriage returns and line feeds. ; 058D PFFEED:: 058D 00 DB FALSE ;Carriage returns to next page ; ;Some users, like programmers, may want to usually print non-documents. ;In this case, WordStar prints any lines that begin with a period (dot ;commands), and expands tab characters (09H) according to theP, or JMP to your own 0594 C9 RET ;subroutine. Must return 0 in AL if ;list device is busy, 0FFH if idle. 0595 ULSTO:: 0595 00 NOP ;User list output subroutine. 0596 00 NOP ;Normally NOP, or JMP to your own 0597 C9 RET ;subroutine. Subroutine receives the ;character in AL. ; ;User list input subroutines are used if either XON/XOFF or ETX/ACK ;protocols are used to indicate when the printer is busy. ; 0598 ULISTA:: 0598 00 NOP ;User list input status subroutine. 0599 00 NOP ;Normally NOP, or JMP to your own 059A C9 RET ;subroutine if LXOFF or LETX is TRUE. ;Must return 0 in AL if no char pending. 059B ULSTI:: 059B 00 NOP ;User list input subroutine. 059C 00 NOP ;Normally NOP, or JMP to your own 059D C9 RET ;subroutine if LXOFF or LETX is TRUE. ;Returns ch re the printer state for non-WordStar ;applications. ; 05A2 ULUNPT:: 05A2 00 NOP 05A3 00 NOP 05A4 C9 RET ; ;The ULINI string is sent to the list device after ULPORT is executed ;and before the document is printed. ; 05A5 ULINI:: ;User list device initialize string 05A5 00 DB 0 05A6 00 00 00 00 DB 0,0,0,0,0,0,0,0,0 05AA 00 00 00 00 05AE 00 ; ;The ULUNI string is sent to the list device after the document is ;printed and before the ULUNPT routine is executed. ; 05AF ULUNI:: ;User list device uninitialize routine 05AF 00 DB 0 05B0 00 00 00 00 DB 0,0,0,0,0,0,0,0,0 05B4 00 00 00 00 05B8 00 ; ;When WordStar begins printing, space is allocated for the three header and ;three footer lines. HFMAX determines how much space to allocate. ; 05B9 HFMAX:: 05B9 0064 DW 100 ;Up to 100 characters per header or footer ; ;DATSEP is used are the characters to be sent. If ;longer strings are required, the first byte can be -1, followed by a ;two byte address pointing into a patch area, where the actual count ;and string can be found. ; 05BD UPRCTL:: ;Custom Print Controls 05BD 00 UPRQ:: DB 0 ;^Q, length 05BE 00 00 00 00 DB 0,0,0,0,0,0 ; string of up to 24 characters 05C2 00 00 05C4 00 00 00 00 DB 0,0,0,0,0,0 05C8 00 00 05CA 00 00 00 00 DB 0,0,0,0,0,0 05CE 00 00 05D0 00 00 00 00 DB 0,0,0,0,0,0 05D4 00 00 ; 05D6 00 UPRW:: DB 0 ;^W 05D7 00 00 00 00 DB 0,0,0,0,0,0 05DB 00 00 05DD 00 00 00 00 DB 0,0,0,0,0,0 05E1 00 00 05E3 00 00 00 00 DB 0,0,0,0,0,0 05E7 00 00 05E9 00 00 00 00 DB 0,0,0,0,0,0 05ED 00 00 ; 05EF 00 UPRE:: DB 0 ;^E 05F0 00 00 00 00 DB 0,0,0,0,0,0 05F4 00 00 05F6 00 00 00 00 DB 0,0,0,0,0,0 05FA 00 00 05FC 00 00 00 00 DB 0,0,0,0,0,0 0600 00 00 0602 00 00 00 00 DB 0,0,0,0,0,0 06 063B PRNPAT:: 063B 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 063F 0000 0000 0643 0000 0000 0647 0000 0000 064B 0000 0000 064F 0000 0000 0653 0000 0000 0657 0000 0000 065B 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 065F 0000 0000 0663 0000 0000 0667 0000 0000 066B 0000 0000 066F 0000 0000 0673 0000 0000 0677 0000 0000 067B 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 067F 0000 0000 0683 0000 0000 0687 0000 0000 068B 0000 0000 068F 0000 0000 0693 0000 0000 0697 0000 0000 069B 0000 0000 DW 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 069F 0000 0000 06A3 0000 0000 06A7 0000 0000 06AB 0000 0000 06AF 0000 0000 06B3 0000 0000 06B7 0000 0000 ; ;If non-standard initialization parameters are used, the ;following identification string can be displayed at ;sign-on. Up to 40 bytes are available for the string, ;including the null terminator. while merge printing to separate one data item from ;another in the data file. ; 05BB DATSEP:: ;Comma 05BB 2C DB ',' ; ;DLIST is the list output delay. Every time a character is output to ;the printer, this delay is used. ; 05BC DLIST:: 05BC 00 DB 0 ;No delay ; ;Custom Printer Control Strings: These strings are sent to the printer ;when the custom print control characters, ^Q, ^W, ^E, or ^R are ;encountered in text being printed. They can be used to invoke special ;printer functions not controlled by the standard driver, such as expanded ;or compressed modes of printing. ; ;Note that some drivers may interfere or override the custom print controls ;you have defined. In this case, use a generic driver such as DRAFT or ;CUSTOM. ; ;A fixed length of 25 bytes is reserved for each string, where the ;first byte is the count of characters to be sent to the printer, and ;the following bytes (up to 5) 06 00 00 ; 0608 00 UPRR:: DB 0 ;^R 0609 00 00 00 00 DB 0,0,0,0,0,0 060D 00 00 060F 00 00 00 00 DB 0,0,0,0,0,0 0613 00 00 0615 00 00 00 00 DB 0,0,0,0,0,0 0619 00 00 061B 00 00 00 00 DB 0,0,0,0,0,0 061F 00 00 ; ;Strike-out character ; 0621 STKCHR:: 0621 2D DB '-' ;Strike out character ; ;If PFFEED above is TRUE, or you specifically tell WordStar to use form feeds ;during printing, the following string is sent to the printer to eject the ;paper to the next page. All printer drivers use this string. ; 0622 01 FORMF:: DB 1 ;^L 0623 0C DB FFEED 0624 00 00 00 00 DB 0,0,0,0,0 0628 00 0629 00 00 00 00 DB 0,0,0,0,0,0 062D 00 00 062F 00 00 00 00 DB 0,0,0,0,0,0 0633 00 00 0635 00 00 00 00 DB 0,0,0,0,0,0 0639 00 00 ; ;This is 128 bytes set aside for printer subroutines. ;This area is also used for print control strings for the CUSTOM ;printer driver. ;   ; 06BB INITID:: 06BB 00 DB 0 ;No ID if standard 06BC 20 20 20 20 DB ' ' 06C0 20 20 20 20 06C4 20 20 20 20 06C8 20 20 20 20 06CC 20 20 20 06CF 20 20 20 20 DB ' ' 06D3 20 20 20 20 06D7 20 20 20 20 06DB 20 20 20 20 06DF 20 20 20 20 ; ;Legal Drives ; ;Note that the first drive is assumed to be the default drive where any ;special files are located such as the WSMSGS.OVR file. The drives listed ;should be reduced to the ones that are actually in use on the system ;upon which WordStar is running. ; ;If the most significant bit of the drive letter is set to 1, WordStar ;will assume that the drive is non-removable. A disk reset will not ;be done when non-removable drives are logged. ; 06E3 LGLDRV:: 06E3 41 42 43 44 DB 'ABCDEFGHIJKLMNOP',0 ;Every legal drive 06E7 45 46 47 48 06EB 49 4A 4B 4C 06EF 4D 4E 4F 50 06F3 00 ; ;Legal User Numbers ; ;Some CP/M operating syste 48 DB 0,'WSHELP OVR' 0705 45 4C 50 20 0709 20 4F 56 52 070D FF DB 0FFH ;Zero if never to search for help 070E IXFILE:: ;Indexer exclusion word list filename 070E 00 57 53 49 DB 0,'WSINDEX XCL' 0712 4E 44 45 58 0716 20 58 43 4C 071A LDFILE:: ;Load file for overlays 071A 00 57 53 20 DB 0,'WS OVR' 071E 20 20 20 20 0722 20 4F 56 52 0726 OVFILE:: ;Print driver overlays 0726 00 57 53 50 DB 0,'WSPRINT OVR' 072A 52 49 4E 54 072E 20 4F 56 52 0732 WSFILE:: ;File containing WordStar (after running pgm) 0732 00 57 53 20 DB 0,'WS COM' 0736 20 20 20 20 073A 20 43 4F 4D 073E SHFILE:: ;Shorthand file 073E 00 57 53 53 DB 0,'WSSHORT OVR' 0742 48 4F 52 54 0746 20 4F 56 52 ; ;If WordStar does not find its own files (WS.COM, WS.OVR...) on the ;logged user, it will look for them on the default user. ; 074A DEFUSR:: 074A 00 DB 0 ;Default user number for system files mber for WordStar to ;log onto at start up time. The first byte is a character count, the ;following bytes (up to three) can contain a drive name (A-P) and user ;number (0-31). ; 075B INILOG:: 075B 00 DB 0 075C 00 00 00 DB 0,0,0 ; ;WordStar creates backup and temporary files. The following ;are the file types to be used for them. ; 075F BAKTYP:: ;Type for backup files 075F 42 41 4B DB 'BAK' 0762 BFTYPE:: 0762 24 42 24 DB '$B$' ;File type of temporary file before memory 0765 AFTYPE:: 0765 24 41 24 DB '$A$' ;File type of temporary file after memory 0768 BLKTYP:: 0768 24 43 24 DB '$C$' ;Type for block move/copy buffer file ; ;When the directory is displayed, file types from this table ;are suppressed. Question marks may be used as wild cards to ;match any character. ; 076B NOTYPE:: ;File types to be ommitted from directories 076B 43 4F 4D DB 'COMms can support user numbers from 0 to 15, ;others support 0 to 31. Also, a user can be prevented from accessing ;other user numbers if zero. ; 06F4 LGLUSR:: 06F4 10 DB 16 ;Sixteen user numbers from 0 to 15 ; ;WordStar uses several files. Their names are specified here. WordStar ;uses the following search pattern to try to find the file: ; ; 1. Look on the current drive and user. ; 2. Default user (DEFUSR) on the current drive. ; 3. Current user on the default drive. ; 4. Default user on the default drive. ; ;If the drive byte of the filename is non-zero, it should be set to a ;number 1 through 16 representing drives A through P respectively. In ;this case, WordStar will look only on the specified drive and the ;DEFUSR user number for the file. ; 06F5 MSFILE:: ;Message file 06F5 00 57 53 4D DB 0,'WSMSGS OVR' 06F9 53 47 53 20 06FD 20 4F 56 52 0701 HPFILE:: ;Help messages file 0701 00 57 53 ;Set to 0-16 or 0-31 (depends on LGLUSR), ; or -1 to defeat ; ;When you use the S command at the Opening Menu, this is the spelling ;check command that is used. If you want WordStar to prompt for the ;document to be checked and then automatically append it to this command, ;set SPFILE non-zero. ; 074B 02 SPCMD:: DB 2 ;Five letters in command 074C 54 57 DB 'TW' ;Run The WORD Plus 074E 00 00 00 00 DB 0,0,0,0,0 ;Spare bytes for longer commands 0752 00 0753 00 00 00 00 DB 0,0,0,0,0 0757 00 0758 FF SPFILE::DB 0FFH ;Automatically ask ; ;When you run a program at the Opening Menu, WordStar first tries to find ;the COM file in the current drive and user, then in this drive and user. ;The default is to look on drive A, user 0. ; 0759 01 URUN:: DB 1 ;Drive code (0=disabled, 1=A, 2=B, ...) 075A 00 DB 0 ;User number ; ;INILOG allows the user to specify a drive and user nu ' ;Command files 076E 4F 56 52 DB 'OVR' ;Overlays 0771 24 3F 24 DB '$?$' ;WordStar temporary files 0774 00 00 00 DB 0,0,0 0777 00 00 00 DB 0,0,0 077A 00 00 00 DB 0,0,0 077D 00 00 00 DB 0,0,0 0780 00 00 00 DB 0,0,0 0783 00 DB 0 ;End of table ; ;DIRFIL is a file name "image" that is used in conjunction with NOTYPE (above) ;to determine which files are to be displayed in WordStar's directories. ;DIRFIL determines which files can possibly be included, and NOTYPE then ;eliminates certain types of files. Use a question mark in DIRFIL at each ;spot where any file name character can match. ; 0784 DIRFIL:: 0784 3F 3F 3F 3F DB "???????????" ;All files match 0788 3F 3F 3F 3F 078C 3F 3F 3F ; ;The name of the file to be edited can be specified at the operating system ;prompt. ININON indicates whether the file should be edited as a document ;or nondocument. ; 078F ININON:: 078F 00 DB FALSE ;Not non 0796 50 4C 49 03 DB 'PLI',00000011B,TRUE ;binary tab mask (e.g. a mask of 079A FF 079B 43 20 20 03 DB 'C ',00000011B,TRUE ;00000111B expands tab characters 079F FF 07A0 48 20 20 03 DB 'H ',00000011B,TRUE ;to every 8th column), followed by 07A4 FF ;TRUE if auto-indent is turned on. 07A5 00 00 00 07 DB 0,0,0,00000111B,FALSE ;End of table with defaults if file 07A9 00 ;type doesn't match above 07AA 00 00 00 00 DB 0,0,0,0,0 ;Room for four more 07AE 00 07AF 00 00 00 00 DB 0,0,0,0,0 07B3 00 07B4 00 00 00 00 DB 0,0,0,0,0 07B8 00 07B9 00 00 00 00 DB 0,0,0,0,0 07BD 00 ; ;WordStar normally only considers alphabetic or numeric characters ;as being within a "word". If other characters are legally part ;or a word too, then the bit for the corresponding character code in ;the following table must be set to a 1. ; ;There are 256 0000000B ;Codes 90H to 9FH 07D2 00 00 DB 00000000B,00000000B ;Codes A0H to AFH 07D4 00 00 DB 00000000B,00000000B ;Codes B0H to BFH 07D6 7F FF DB 01111111B,11111111B ;Codes C0H to CFH 07D8 FF E0 DB 11111111B,11100000B ;Codes D0H to DFH 07DA 7F FF DB 01111111B,11111111B ;Codes E0H to EFH 07DC FF E0 DB 11111111B,11100000B ;Codes F0H to FFH ; ;When you use ^A or ^F to move a word at a time, WordStar uses the ;following table to determine which characters to skip. It is organized ;in the same manner as LGLCHR above. ; 07DE MOVCHR::; 01234567 89ABCDEF 07DE FF 92 DB 11111111B,10010010B ;Codes 00H to 0FH 07E0 FB C3 DB 11111011B,11000011B ;Codes 10H to 1FH 07E2 3F F5 DB 00111111B,11110101B ;Codes 20H to 2FH 07E4 FF CE DB 11111111B,11001110B ;Codes 30H to 3FH 07E6 FF FF DB 11111111B,11111111B ;Codes 40H to 4FH 07E8 FF FF DB 11111111B,11111111B ;Codes 50H to 5FH 07EA FF FF DB 11111111B,11111111B ;Cod-document from command line ; ;WordStar normally makes BAK backup files every time you save your work. ;INITBAK can be used to disable backups by setting it FALSE. ; 0790 INIBAK:: 0790 FF DB TRUE ;Make backups ; ;When a nondocument is edited, WordStar will decide how to expand tabs ;(ASCII 09H), and whether or not to use auto-indenting by looking in this ;table. ; ;There is a special case of the tab masks shown below. When the most ;significant bit of the tab mask is set to 1, WordStar will assume that ;you want to use variable tabbing. When the tab key is typed, instead ;of inserting an ASCII 09H into the file, spaces will be entered up to ;the next tab stop. The tab stops used are in the INIRLR table. An ;ASCII 09H can still be entered in this mode, however, by typing ^PI. ; 0791 EDCOND:: ;Edit conditions for specific file types 0791 50 41 53 01 DB 'PAS',00000001B,TRUE ;File extension, followed by a 0795 FF bits in the table to allow for 8-bit character sets. ;The default table has the bits set for the numbers "0" through "9" ;(ASCII codes of 30H through 39H), for the upper case letters ;"A" through "Z" (41H through 5AH), and the lower case letters "a" ;through "z" (61H through 7AH). Since the ASCII codes are only ;seven bits, the corresponding codes with the eighth bit set are ;also legal. ; 07BE LGLCHR::; 01234567 89ABCDEF 07BE 00 00 DB 00000000B,00000000B ;Codes 00H to 0FH 07C0 00 00 DB 00000000B,00000000B ;Codes 10H to 1FH 07C2 00 00 DB 00000000B,00000000B ;Codes 20H to 2FH 07C4 00 00 DB 00000000B,00000000B ;Codes 30H to 3FH 07C6 7F FF DB 01111111B,11111111B ;Codes 40H to 4FH 07C8 FF E0 DB 11111111B,11100000B ;Codes 50H to 5FH 07CA 7F FF DB 01111111B,11111111B ;Codes 60H to 6FH 07CC FF E0 DB 11111111B,11100000B ;Codes 70H to 7FH 07CE 00 00 DB 00000000B,00000000B ;Codes 80H to 8FH 07D0 00 00 DB 00000000B,0 es 60H to 6FH 07EC FF FE DB 11111111B,11111110B ;Codes 70H to 7FH 07EE FF 92 DB 11111111B,10010010B ;Codes 80H to 8FH 07F0 FB C3 DB 11111011B,11000011B ;Codes 90H to 9FH 07F2 3F F5 DB 00111111B,11110101B ;Codes A0H to AFH 07F4 FF CE DB 11111111B,11001110B ;Codes B0H to BFH 07F6 FF FF DB 11111111B,11111111B ;Codes C0H to CFH 07F8 FF FF DB 11111111B,11111111B ;Codes D0H to DFH 07FA FF FF DB 11111111B,11111111B ;Codes E0H to EFH 07FC FF FE DB 11111111B,11111110B ;Codes F0H to FFH ; ;Certain special characters can be inserted into this table to cause ;WordStar to automatically generate a backspace character (^H) preceding ;the character as you type. This can be especially useful for accent ;characters in some foreign languages. ; 07FE AUTOBS:: ;Automatic backspace table 07FE 00 DB 0 ;Number of characters in table 07FF 00 00 00 00 DB 0,0,0,0 ;Up to 8 character codes 0803 00 00 00 00 DB 0,0,0,0 ; F DB TRUE ;Bidirectional printing if TRUE. Just ;unidirectional or printer controlled ;if FALSE. (Many printers do not allow ;software control of print direction). 0813 FF DB TRUE ;Letter quality printing if TRUE. Draft ;quality if FALSE. (Only supported on ;some printers.) 0814 02 DB 2 ;Microjustified printing. 0 turns it off, ;1 turns it on, and 2 makes it discretionary ;(depending on the printer driver in use). 0815 00 DB FALSE ;Underline blanks between words if TRUE. ;NOTE: Not implemented for all printers. 0816 0C DB 12 ;Standard character width (in HMI units). ;The printer is reset to this when done ;printing. 0817 08 DB 8 ;Standard line height (in VMI units). The ;printer is reset to this after .stop tables must contain values in ascending order only. ;The regular tab stops are put in the table first, immediately followed by ;the decimal tabs. ; 081C INIRLR:: ;Ruler data 081C 01 DB 1 ;Left ruler margin 081D 41 DB 65 ;Right ruler margin 081E 00 DB 0 ;Paragraph margin 081F 0B DB 11 ;Eleven tabs 0820 06 0B 10 15 DB 6,11,16,21 ;Tab stops 0824 1A 1F 24 29 DB 26,31,36,41 ;(Must be in 0828 2E 33 38 DB 46,51,56 ;ascending order) 082B 00 00 00 00 DB 0,0,0,0 ;Space for 4 more 082F 00 DB 0 ;No decimal tabs 0830 00 00 00 00 DB 0,0,0,0,0,0 ;Space for 6 0834 00 00 002F inisiz EQU $-INIDOC ;Size of document initialization ; ;INIRLI determines whether the ruler line is re-initialized from INIRLR each ;time any document is edited. If INIRLI is FALSE, you can change the initial ;ruler line with ^OL, ^OR, ^OI, and ^ON commands, and have those changes ;be used for every document edited;When WordStar gets a file for editing, it will use the following ;initial conditions. ; 0807 INIDOC:: ;Document initializations 0807 03 DB 3 ;Top of page margin. 0808 08 DB 8 ;Bottom of page margin. 0809 42 DB 66 ;Total lines per page. 080A 0001 DW 1 ;Initial page number (note 2 bytes). 080C FF DB TRUE ;Page number prints at bottom of page ;if TRUE. No page number if FALSE. 080D 1C DB 28 ;Column where page number prints. 080E 02 DB 2 ;Heading margin. This is the number of lines ;above the text where the heading is to print. 080F 02 DB 2 ;Footing margin. This is the number of lines ;below the text where the footing is to print. 0810 07 DB 00000111B ;Default document tab mask (must be ;binary, 00000000B through 01111111B). 0811 08 DB 8 ;Left column where printing starts. 0812 FLH dot ;commands. It is also used to determine ;the page size in VMI units by multiplying ;by the lines per page above. 0818 0C DB 12 ;Character width (in HMI units) ;for normal pitch. If HMI is 120, ten pitch ;is 12/120, twelve pitch is 10/120. 0819 0A DB 10 ;Character width for alternate pitch (use ;^PA to select alternate pitch while editing). 081A 03 DB 3 ;Subscript and superscript roll (in VMI ;units). This value determines how ;far up or down the carriage moves when ;subscripting or superscripting. 081B 08 DB 8 ;Line height (in VMI units). This value ;determines how far to roll the carriage ;to get to the next line. ; ;The default ruler line can be described by defining the following values. ;Note that the tab  until you exit WordStar. ; 0836 INIRLI:: 0836 FF DB TRUE ;Initialize ruler for each document ; ;As you move through a document, WordStar executes some of the dot commands, ;like .RR ruler line commands, as they are encountered. As WordStar moves ;forward through the text, the old ruler line is stored in memory so that it ;can be restored when you move backwards over the .RR later. Other dot ;commands work in a similar manner. ; ;DSTKSZ is used to allocate storage for the dot commands. While you are ;editing, WordStar puts a Dot-Limit indicator in the status line if you ;use too many dot commands. ; ; Dot Command Size ; .RR 26 ; .RM .LM .LH .PL 1 ; .MT .MB 1 ; .PN 2 ; 0837 DSTKSZ:: 0837 01F4 DW 500 ;Room for 19 .RR commands or 500 .RM & .LM ; ;INIDIR determines whether the directory is initially displayed or not. ;DIRSRT tells WordStar whether or not to sort directories in alphabetian be read from ;the disk for WordStar's messages and menus. ; 083F VMSIZE:: 083F 04 DB 4 ;Four records (.5k byte) ; ;EDSIZE indicates the minimum number of records of edit buffer required ;to edit a document properly. WordStar must be able to keep a whole ;page in memory to determine page breaks and line numbers correctly. ;Less memory can sometimes be used with occasional strange results. ;(Non-documents are automatically allocated a minimum of 6 records.) ; 0840 EDSIZE:: 0840 1C DB 28 ;Enough memory for an average full page ; ;BFSIZE is the number of 128-byte records that WordStar uses for its ;general purpose buffer. There is a different buffer allocation for ;editing, the Opening Menu, and for merge printing. ; ;This buffer is used for: ; ; - File directories (each file uses 11 bytes), ; - Printer driver directory (each driver uses 11 bytes and 256 ; bytes are used for buffering), ; - File cop any at the "Options?" prompt. The possible options ;that can be used are: ; ; W whole words only ; U ignore case ; B backwards search ; G whole file ; R rest of file ; N replace without asking ; ;Blank the unused options. ; 0849 INIFIN:: 0849 20 20 20 20 DB ' ' ;No options 084D 20 20 ; ;The status line is usually displayed at the top of the screen. ;INISTA lets you always turn it off. STFILL specifies what character ;to use to fill unused space in the status line. ; 084F INISTA:: 084F FF DB TRUE ;Display status line 0850 STFILL:: 0850 20 DB ' ' ;Fill with blanks ; ;When paragraphs are aligned with ^B or ^QU and hyphen help is on, HYMAX ;is used to determine when to ask the user to hyphenate a word. ; 0851 HYMAX:: 0851 05 DB 5 ;Ask user when the word extends more than 5 ;characters past the right margin ; ;When Wordcal ;order before displaying them. ; 0839 INIDIR:: 0839 FF DB TRUE ;Directory on 083A DIRSRT:: 083A FF DB TRUE ;Sort directory in alphabetical order ; ;INIHLP is the default help level. It can have a value from 0 to 3. ; 083B INIHLP:: 083B 03 DB 3 ;Maximum help level at start ; ;When editing, the last erasure can be undone with ^U. UNONE determines ;whether single character erasures with ^G and DEL can also be undone. ; ;UNSIZE is the maximum erasure that can later be undone. The unerase ;buffer shares the same memory space as the text you are editing. Making ;UNSIZE very large may cause WordStar to "spill over" to disk more ;frequently, slowing down editing. ; 083C UNONE:: ;Don't unerase single characters 083C 00 DB FALSE 083D UNSIZE:: 083D 01F4 DW 500 ;Maximum unerase size ; ;VMSIZE indicates the number of 128-byte records that cies, ; - Block reads and writes, ; - Merge printing. ; 0841 BFSIZE:: 0841 10 DB 16 ;Edit buffer size (16 records = 2k) ;(Minimum is 1 record) 0842 10 DB 16 ;Opening menu buffer size ;(Minimum is 3 records) 0843 10 DB 16 ;Merge print buffer size ;(Minimum is 1 record) ; ;If a document becomes too large to fit in memory at one time, WordStar ;begins to "spill" the excess to the disk. TYSIZE determines how many ;128-bytes records to use for each spillover. Picking a correct size ;is important but can usually be done by trial and error. If TYSIZE is ;too large, you may see long delays during scrolling or typing when memory ;fills. ; 0844 TYSIZE:: 0844 10 DB 16 ;Number records read or stored while typing 0845 00 00 00 00 DB 0,0,0,0 ;Reserved ; ;A "find" or "find and replace" uses the INIFIN options if you do not ;explicitly enterStar asks a question that requires a Y for yes or N for no response, ;YNCR indicates whether or not the user must push the RETURN key before ;WordStar will accept it. ; 0852 YNCR:: 0852 00 DB FALSE ;Don't wait for RETURN key ; ;WordStar can index every word in a document as well as selected words and ;phrases. IDXALL determines whether this is the default or not. ; 0853 IDXALL:: 0853 00 DB FALSE ;Don't index every word ; ;Using ^B or ^QU in a nondocument normally strips the eighth bit from ;each character in a line. STRPFL can disable stripping. ; 0854 STRPFL:: 0854 FF DB TRUE ;Stripping is enabled ; ;Editor Entry Conditions ; 0855 INIEDT:: 0855 FF DB TRUE ;Right justification when typing 0856 FF DB TRUE ;Word wrap when typing at end of line 0857 FF DB TRUE ;Insert on 0858 FF DB TRUE ;Print controls displayed 0859 00 UE ;Set non-zero if ^N to break line and ;RETURN moves down a line when insert off. ;Set to zero so ^N converts paragraph lines ;and turns auto indent on/off for ;nondocuments, and RETURN always inserts CRLF. 0867 CTLHFL:: 0867 00 DB 0 ;Set non-zero if ^H to be same as ^S instead ;of DEL. 0868 CASEFL:: 0868 00 DB 0 ;Set non-zero if ^^ is case toggle. When ;zero and CLTNFL is non-zero, use as ;paragraph line and auto-indent on/off. 0869 DELFLG:: 0869 00 DB 0 ;Set non-zero if DEL erases to left, zero ;to erase to right (like ^G). 086A BLKFLG:: 086A FF DB 0FFH ;Set non-zero if the cursor should move ;to column 1 if the cursor is next to a block ;marker at the left edge of the screen 086B LSPF actual usage since it reduces the amount of memory available ;for text while editing and printing. The size of each definition ;is equal to 5 plus the number of characters defined. If this value ;is smaller than the size of the shorthand file (see SVFILE above), ;only some of the definitions will be used. Setting it to zero ;disables shorthand and makes the ESC key clear the screen instead. ; 086E HANMAX:: 086E 04 DB 4 ;Size of shorthand buffer in records ;(4 times 128 = 512 bytes) ; ;With shorthand you can insert the dollar-formatted results of the last ;math you performed. WordStar uses the format below when you do this. ;(Make sure that the character count includes the zero at the end.) ; 086F DOLLAR:: 086F 11 DB 17 ;Character count 0870 2D 2D 2C 2D DB '--,---,---,---.99' 0874 2D 2D 2C 2D 0878 2D 2D 2C 2D 087C 2D 2D 2E 39 0880 39 0881 00 00 00 DB 0,0,0 ;Spare 0884 00 00 00 00 DB  DB FALSE ;No hyphen help 085A FF DB TRUE ;Ruler displayed 085B 00 DB FALSE ;Block column mode off 085C 00 DB FALSE ;Block column replace mode off 085D 01 DB 1 ;Single spacing 085E 02 DB 2 ;Scrolling speed 085F 00 DB FALSE ;Proportional spacing off 0860 00 DB FALSE ;Soft space not displayed 0861 00 00 00 DB 0,0,0 ;Reserved ; 000F iniesz EQU $-INIEDT ;Size of editor conditions ; ;The following are special characters that affect how numbers are ;evaluated and dispayed. ; 0864 COMCHR:: 0864 2C DB ',' ;Comma to separate 1,000's 0865 DECCHR:: 0865 2E DB '.' ;Decimal point ; ;The following flags are used to control the way WordStar processes ;certain commands. CTLNFL and CTLHFL are provided primarily to allow ;WordStar 3.3 users to use ^N and ^H in the same way as they are accustomed. ; 0866 CTLNFL:: 0866 FF DB TRLG:: 086B 00 DB 0 ;Set non-zero if lines with soft carriage ;returns should not be added to paragraphs ;for line spacing other than 1 ; ;RLRVID allows the user to select video attributes used to highlight ;the ruler line. See VIDATT for bit definitions. ; 086C RLRVID:: 086C 00 DB 0 ;No ruler highlighting ; ;AHEAD indicates whether type ahead is allowed for ^E, ^X, ^W, ^Z, ;^G, DEL, ^T, ^Y, ^QY, and ^QDEL. If AHEAD is 0, WordStar's type ;ahead buffer will be flushed whenever one of the functions is ;encountered. If it is non-zero, no flushing will occur. This ;flag should be used primarily for external keyboard enhancers where ;the functions shown above are to be used. WordStar's function key ;and shorthand processing automatically compensate. ; 086D AHEAD:: 086D 00 DB 0 ;Flush ; ;Maximum size for the shorthand definitions. Should be optimized to ;match0,0,0,0,0,0,0,0 ;Reserved 0888 00 00 00 00 088C 00 00 00 00 DB 0,0,0,0,0,0,0,0 0890 00 00 00 00 ; ;EXTRA is a large buffer area for general patching. Some versions of ;the WINSTALL installation program use EXTRA. Whenever EXTRA is used, ;RAM1ST must be changed to point to the first available byte within EXTRA ;that is still available for WordStar's use. If all of EXTRA is used, ;RAM1ST should point to endpat. ; 0894 RAM1ST:: 0894 0896 DW EXTRA ;First location in EXTRA that WordStar can use ; 0896 EXTRA:: DS 512 ;Patch area 0A96 endpat:: ;End of patch area 0A96 08 0C 57 UDATE: DB 08,12,87 ;User area version date  --THE README FILE-- ------------------------ README contains late-breaking news and tips about WordStar, and information about printers. THE DISKS THAT CAME IN YOUR PACKAGE ----------------------------------- The file HOMONYMS.TXT is included on the Speller disk contrary to what is listed in Appendix D. INSTALLATION ------------ WINSTALL and WSCHANGE WordStar has two installation programs: o WINSTALL contains the basic choices to install WordStar. It is recommended for all users. Be sure and install your valid disk drives since WordStar running under CP/M cannot recover from attempts to access non- existent disk drives. o WSCHANGE contains every installation and customization choice. It is designed for advanced users and users who want to customize WordStar after they're familiar with it. Use the menu listing below for a directory of the menus in WSCHANGE. Directory of WSCHANGE Menus The chart belowD Printing defaults E Printer interface A Printer port selection B Printer busy handshaking C Printer subroutines C Computer A Disk drives A Valid disk drives B Maximum valid user number C Delay disk access if typing B Operating system A Single-user system B Multi-user MP/M C Multi-user Turbo DOS D ZCPR3 C Memory usage D WordStar files E Directory display F Computer patches D WordStar A Page layout A Page sizing & margins B Headers & footers C Tabs B Editing settings A Edit screen & help level B Typing C Paragraph alignment D Blocks E Erase & unerase F Lines & characters G Find & replace H WordStar 3.3 compatibility I Printing defaults C Other features A Spelling checks B Nondocument mode C Indexing D Shorthand (key macros) E Merge printing F Miscellaneous E å shows the organization of menus in WSCHANGE. Print it out and refer to it as you customize WordStar. Main Installation Menu A Console A Monitor A Monitor selection B Monitor name C Screen sizing B Function keys C Monitor patches A Special characters B Cursor control C Screen control D Keyboard patches A Function keys B Save function keys E Interface patches A Console busy handshaking B Special I/O subroutines B Printer A Printer choices A Printer selection B Printer name C Default printer driver B Printer driver library A Select library file B Create smaller library C Add new printer driver D Change printer driver data C WS printer patches A Custom print controls, printer initialization NOTE: Disregard the "CUSTOM & SIMPLE Controls Save CUSTOM/SIMPLE Controls" option shown. This is not available from this menu. Patching A Auto patcher B Save settings C Reset all settings MEMORY USAGE ------------ WordStar requires a minimum TPA size of 50 kbytes to run using the factory defaults. The TPA is the amount of memory available in your computer for use by programs that have a file type of COM. To see how big the TPA is in your computer, press the question mark key (?) at the Opening Menu. The amount of memory required by WordStar can be reduced by approximately 3 kbytes if necessary. Use the WSCHANGE program to select the minimum memory configuration option. The menu will show you what capabilities are being reduced. WordStar uses a general-purpose buffer for a variety of tasks. WordStar allocates memory to this buffer for editing, for merge printing, and at the Opening Menu (see BFSIZE in PATCH.LST). The buffer used for editing is usually the most sensitive to a reduced TPA size. (You may be able to use the Opening Menu and printme. When you first begin editing, WordStar uses the value from EDSIZE in the user area to determine the minimum amount of memory required for a page of text. The default is set for approximately a 55 line by 66 column page. If your page size is routinely larger than this, you may want to increase EDSIZE. Multiply the number of lines by the number of columns, and divide by 128. If the Low-Memory indicator comes on while printing, it is due to either the same reasons as for editing, or there is insufficient memory to print the text proportionally spaced. The amount of memory required depends on which printer driver you are using. If you aren't using the .PS ON dot command to turn proportional spacing on in your document, low memory won't be a problem. Also, WordStar uses more memory for merge printing than it does for regular printing (around 2.5 kbytes more). The Low-Memory indicator will also appear when a full disk error is s that the WordStar sign-on says "ZCPR3," and the LGLUSR location in the user area is changed for a maximum user number of 31. (The normal default for LGLUSR is 15.) Once the user has installed WordStar for use with ZCPR, the user will be able to use the following ZCPR features: - A named directory may be used when logging onto a new drive/user. - A named directory may be used instead of a drive/user as part of any file name. - The drive/user always appears above file directories. (For CP/M only the drive letter is shown if the user number is zero.) - The directory name also appears above the directory if one has been defined for the currently logged drive/user. - If WordStar does not find its OVR files on the current drive and user, it will search the drives and user numbers in the ZCPR search path rather than using its standard search pattern. - WordStar installs itself as a ZCPR "shell" process which lets the, but there may be insufficient memory for editing.) The merge print buffer is used only to hold merge print variable names and data. Increase it if you run out of memory while merge printing. The Opening Menu buffer is used primarily to hold the file directory, and for miscellaneous tasks. LOW-MEMORY INDICATOR IN STATUS LINE ----------------------------------- If the Low-Memory indicator appears in the status line, it means that WordStar was unable to complete some function. The most common symptoms are: the line number in the status line is wrong, or a paragraph alignment could not be completed. You may correct the line counter by saving your file, exiting WordStar, and re-loading your file. To correct the paragraph alignment, move your cursor to the point where paragraph alignment stopped, and then press ^B again. The reason this comes up is that WordStar was not able to fit a big enough chunk of text into memory at one tiencountered during editing. Treat the disk-full error as you would normally. RAM-RESIDENT PROGRAMS --------------------- RAM-resident programs, such as SmartKey, reduce the amount of working memory (TPA) that WordStar can use. The new features in WordStar, such as shorthand, may reduce the need for these RAM-resident programs, thus freeing memory for WordStar. ZCPR3 SUPPORT ------------- In order to enable the ZCPR facilities within WordStar, the user must use the Z3INS utility provided with ZCPR to install the address of the ZCPR "environment" into WordStar. The environment contains information that WordStar uses to support ZCPR-specific functions. Generally, the user should log onto the drive containing the file WS.COM, and issue the command: Z3INS SYS.ENV WS.COM The user should also run either WINSTALL or WSCHANGE to further install WordStar for ZCPR. However, this is not mandatory because the only thing that happens i user enter any legal ZCPR command when running a program. (CP/M can only run programs that are COM files.) OSBORNE USERS ------------- The command to change a hard carriage return to a soft carriage return (document mode) or to turn Auto-indent ON (nondocument mode) does not function on the Osborne because of a limitation in its BIOS. The following patch can be applied to change the command from ^^ to ^- (Ctrl-Hyphen): Using DDT or SID in the file WSMSGS.OVR: At 02DA replace 1E with a 1D At 02EF replace 1E with a 1D At 0359 replace 1E with a 1D At 06B2 replace 1E with a 1D At 06C9 replace 1E with a 1D At the system prompt type SAVE 53 WSMSGS.OVR For more information on how to use SID or DDT, see your CP/M reference guide. As always, be sure and apply the patch to a COPY of the file. INSTRUCTIONS FOR TWO FLOPPY DISK COMPUTERS ------------------------------------------ Do not remove the Program disk while you are using WordStar. for a list of other drivers to save. SPELL CHECKING -------------- Dual floppy disk users: Unless you have sufficient room on your working WordStar program disk for the files TW.COM, SPELL.COM, MARKFIX.COM, REVIEW.COM and MAINDICT.CMP you will not be able to run a spell check from the Opening Menu. You will need to exit WordStar and replace the working WordStar program disk with the dictionary disk you created during installation. This disk should contain the files listed above. Make sure the disk in drive B has the file you want to spell-check. Follow the directions for running a spell check in The WORD Plus manual. UPGRADING FROM A PREVIOUS RELEASE --------------------------------- This release of WordStar contains many new features and commands. See the "What's New" booklet for a complete list. The following changes came in too late to be included in the documentation. Printer Patches Previous versions of WordStar treaevious release's user area into files that can be installed into Release 4 with the "auto patcher" feature. Copy the program MOVEPRN.COM onto the disk containing the WS.COM file for the previous version. Type MOVEPRN WS.COM FILE1.PAT FILE2.PAT MOVEPRN extracts the proper portions of the user area and writes them into two files that may then be used with the "auto patcher" feature of WSCHANGE. FILE1.PAT is to be used with the general patching menu (Choose E "Patching" on the WSCHANGE Main Menu, then A "Auto Patcher"). FILE2.PAT should be used to install strings first into the SIMPLE driver, and then into the CUSTOM driver (choose B "Printer" on the WSCHANGE Main Menu, then B "Printer driver library", D "Change printer driver data" and D "Driver auto patcher"). Test print your document first with the SIMPLE driver, and then with the CUSTOM driver to see which one produces the most satisfactory results. Also read Appendix C for The Printer Driver Library file (WSPRINT.OVR) on the WordStar program disk is much smaller than the Printer Driver Library file contained on the disk labeled PRINTER. Be sure to read the section in "Starting" that discusses the printer library file. RUN A PROGRAM ------------- Once you press R you can type the drive and user number for the program you want to run. You may run only .COM files. CCP commands, such as DIR cannot be used. INDEXING -------- Using StarIndex StarIndex 1.01 works with files created with this release of WordStar. "Can't Use That Printer" Message When WordStar creates an index or table of contents, it uses the printer drivers $INDEX and $TOC. If you created a smaller WSPRINT.OVR file, you may have left these drivers out. To return them to the file, copy the original WSPRINT.OVR file onto your disk. When you create a smaller file again, be sure to save these drivers. See Appendix C in the WordStar manual t most dot matrix printers and other non-daisy wheel printers as a DRAFT printer with a few patchable items. Because of this, many users have used these patches to be able to use certain features of their printers. Sometimes the patches have been quite extensive, and some users have many files that count on them. The printer drivers of WordStar Release 4, on the other hand, are very powerful. Almost every driver recognizes all the print controls and all the dot commands. In fact, if a document is written to be printed on one kind of printer, it is likely that it will also print fine on some other printer. However, if you want to use your existing files with WordStar 4, and those files rely on the user area being patched in a special way, you can probably do so by moving the patches into WordStar 4, and using the CUSTOM or SIMPLE printer driver. On the INSTALL disk is a program called MOVEPRN.COM that copies the printer driver portion of the pr more information on using the Auto Patcher. Hanging Indents For WordStar Professional Release 4, MailMerge reformats indented text created with ^OG to the current margins. If you want the text to remain indented, use embedded ruler lines or the .RM, .LM, and .PM commands. See the "Reference Guide" for more information. Pressing ^OG to wrap back to the first tab on the ruler line after having reached the last tab works the same way it did in previous versions of WordStar, contrary to what is stated in the manual. TERMINALS --------- WordStar comes installed for an "idealized" special terminal. WINSTALL and WSCHANGE allow you to install many terminals by name, thus allowing WordStar to take advantage of the special features that the terminal might support, such as underlining or the function keys. Use either WINSTALL or WSCHANGE to pick your specific terminal or computer screen from the Monitor menu. If your terminal isn't oin your text, so that regular text is displayed bright, and highlighted text will be displayed as dim. However, text in the menus is not affected. DISPLAY PROBLEMS WITH TERMINALS ------------------------------- Once you have installed WordStar for the proper terminal, you may still experience display problems. If text from the previous screen remains after WordStar displays a new screenful of text, the most likely cause is cursor wrap. Basically, WordStar must know what happens to the cursor when a character is displayed at the rightmost position of the screen. It can either remain at the right edge, or it can wrap to the beginning of the next line. The WRAP flag in WordStar must be set either on or off to correspond to the way the terminal works. (It is generally set for the terminal's factory default, but the default can usually be changed using the terminal's setup mode.) Another possible cause for display problems is your terminal' Printer Selection Menus. If your printer is on the menu, simply choose it during installation. 2. If your printer isn't listed on the menu, it may work like a printer that is. Refer to the second chart in the Printer Information brochure for a list of printers that work like printers on the menu. When WordStar asks you to choose a printer, choose the printer that works like yours. 3. If neither chart lists your printer, choose Typewriter Printer (if your printer can backspace) or Draft Printer (if it can't). These choices may not take advantage of all your printer's features, but they will work with almost any printer. Note: If you choose Draft or Typewriter, you can modify custom print controls and printer initialization. If you want to make more modifications to take advantage of your printer's feature, choose the Custom or Simple drivers, then use the WS Printer Patches section of WSCHANGE to tell WordStar the codes fn the menu, it probably emulates one of those that is there. Look in your terminal documentation to find out. After you install WordStar for the proper terminal, run WordStar and open the file PRINT.TST to see which attributes (such as bold and underline) work on your screen. WordStar will highlight the following in some way... Bold (^PB) Underline (^PS) Strike-out (^PX) Subscript (^PV) Superscript (^PT) Doublestrike (^PD) Italics (^PY) Blocks (^KB, ^KK) Error messages Most of the time, normal text will be shown in dim intensity, and highlighted text will be shown in bright intensity. You may have to use a brightness and/or contrast knob to adjust your screen the first time you use WordStar this way. If your dim intensity is too dim to see well, and you can't adjust it, you can change the BRITE flag to ON using WSCHANGE. This will invert bright and dim s incomplete emulation of some other terminal. The most common differences are... Line insert (LININS), line delete (LINDEL), Erase to end of screen (ERAEOS), Erase to end of line (ERAEOL), And, erase screen (ERASCR). Look in the manual for your terminal and use WSCHANGE to see if the control sequences match. PRINTERS -------- WHAT'S IN THIS SECTION This section contains the following information: Choosing a Printer Setting Up Your Printer Printer Drivers Proportional Printing Laser Printers Information on Specific Printers CHOOSING A PRINTER WordStar is ready to work with over 100 printers. The printer you choose during installation becomes your default printer. However, when you print a document, you can choose any other printer. To choose a default printer, follow these steps: 1. Look at the Printer Information brochure that came in your package. The first chart shows the printers listed on the or your printer. Refer to your printer manual for these codes. Some printers work better with the Custom driver and some with the Simple driver. Try using both and see which works better with your printer. See the "Reference Guide" for more information. SETTING UP YOUR PRINTER Choosing a Printer Port Each printer is connected to a printer port at the back of the computer. WordStar looks for printers on the LST: port. If your printer is connected to a different port, use WSCHANGE to tell WordStar the correct port. Testing Your Printer Connection At the operating system prompt, type "PIP LST:=READ.ME." This file should be printed by your printer. If it is not, your printer may be connected to a different port. See your computer reference manual, and the section on the STAT command in your CP/M reference manual for more information. PRINTER DRIVERS The WSPRINT.OVR file on the Printers disk contains a printer driver for each printer on the PrinordStar mostly sets character widths based on the proportional-width table in the driver, on the more advanced daisy wheel printers, WordStar uses the printer's proportional- spacing mode. WordStar determines how much white space is needed to right-justify the line based on its own proportional width tables. If the table values don't match the wheel installed, WordStar won't be able to justify the line correctly. WordStar sends standard ASCII characters; if a proportional wheel uses a different spoke mapping, set up the printer to handle this. LASER PRINTERS WordStar supports laser printer features such as font changes and proportional spacing. WordStar supports several laser printers: the Canon LPB-8 A1 & A2; the Hewlett-Packard LaserJet, LaserJet+, and LaserJet 500+; and the Ricoh LP4080. Refer to the "Specific Printer Information" section of this file for information on these printers. General notes about using laser printers are given below. Pap 2 2 If the laser printer is your primary printer, you can use WSCHANGE to make these settings the defaults. Because laser printers leave small margins at the left and right sides of the page, you may want to use a smaller page offset setting (the default is .PO 8). Form Feeds When you print with a laser printer, answer Y for yes to the "Use form feeds (Y/N)?" prompt at print time. (The default is NO.) If the laser printer is your primary printer, you can use WSCHANGE to change the default to yes. WordStar Commands for Font Selection The WordStar dot commands and print control commands listed below determine the fonts used for printing a document. .PR .PR OR=L selects landscape orientation; .PR OR=P (or just .PR OR) selects portrait orientation (the default). If either of these commands appears after the first printing line on a page, the orientation will not change until the following page. .PS .Pter Selection Menu. The printer driver for a printer contains all the codes WordStar needs to work with that printer. Each printer driver has a short name. If you choose a printer when you print a document, you see the names of the printer drivers, not the names of the printers. PROPORTIONAL PRINTING WordStar supports proportional printing on a number of printers. To turn on proportional printing, either install WordStar to default to proportional printing, or place a ".PS on" command in your document. At print time, WordStar selects the appropriate proportional font based on the character width (.CW) currently in effect. The specific printer descriptions later in this section show recommended character widths for proportional typefaces. These widths are for a normal mix of upper- and lowercase letters. If you have many words or phrases all in uppercase or if you want your text less densely printed, choose a larger character width. While Wer Size and Margins Laser printers come with preset page margins. You need to compensate for these margins by changing page length in your WordStar documents. The chart below shows the recommended settings for 8 1/2 X 11 inch paper for both portrait and landscape orientations. These settings allow 55 lines of text for portrait orientation and 40 lines of text for landscape orientation (at 6 lines per inch). They also allow for a footer of up to 3 lines and a one-line header. If you use multiple-line headers, adjust the top margin accordingly. Dot Default Portrait Landscape Setting Command Value Orientation Orientation ------- ------- ------- ----------- ----------- page length .PL 66 62 47 top margin .MT 3 2 2 bottom margin .MB 8 5 5 header margin .HM 2 1 1 footer margin .FM 2S ON selects proportionally spaced characters; .PS OFF (the default) selects fixed-spaced characters. .CW The character-width setting (.CW followed by the width in 120ths of an inch) determines the character pitch and font selected for fixed-width printing. For proportional fonts, it determines the point size and proportional-width table selected. .LQ .LQ ON selects near letter quality print (if supported by your printer). LQ OFF selects draft quality print. Default is ON. ^PY The italic print control toggles between normal and italic characters when the appropriate italic font is available. ^PB The boldface print control toggles between normal and bold characters when the appropriate bold font is available. ^PD The double strike print control used with the laser printers toggles overprinting with a horizontal offset of 1/120" between the two character images. This allows a bold effect isted on the Printer Selection Menu. The printers are listed in alphabetical order (except for the generic printers such as "Draft," "Typewriter," "Custom," "Simple," and the various print-to-disk options, which are listed first). There is a chart for each printer explaining how features work and listing any special notes about the printer. Each printer is described in the following format: PRINTER NAME ----- Driver: (short name) ^PY Effect of italics/ribbon color print control ^PT/V Subscript/superscript information .CW Information on available character widths and fonts. The chart shows the .CW, .LQ, and .PS settings required to use different fonts. .LQ OFF .LQ ON .PS ON Font Name ------- ------ ------ --------- .cw val .cw val recommended value (range) font 1 .cw val .cw val recommended value (range) font 2 .UL Continuous-underlin Backspaces and overprints the underscore character ^PT/V Prints super/subscripts with a full line between super/subscript and text .LH Sets line height only in multiples of full lines .CW N/A .PS N/A .LQ N/A .UJ N/A NOTES This driver works with any printer that doesn't automatically perform a line feed when a it receives a carriage return command, and responds to a backspace character. Overprinting is done by backspacing. AUTO LINE FEED PRINTER (backspacing) ----- Driver: AUTOLF ^PD Backspaces and overprints each character twice ^PB Backspaces and overprints each character three times ^PS Backspaces and overprints the underscore character ^PT/V Prints super/subscripts with a full line between super/subscript and text .LH Sets line height only in multiples of full lines .CW N/A .PS N/A .LQ N/A .UJ N/A NOTES This driver works with any printer that automatically performs a line feed when it receive where no bold font is available. ^PA ^PA turns alternate pitch on. Use .CW to assign different character widths to normal pitch (see ^PN below) and alternate pitch so that each pitch accesses a different font. You can then change fonts by switching between the two pitches. This is the only way to use two fonts on the same line. (See "Character width" and "Pitch" in the "Reference Guide.") ^PN ^PN turns normal pitch on. You can use it with ^PA as described above. ^P@ When working with columns, if you use alternate and normal pitch for two fonts, or if you use proportional spacing, you may need to use ^P@ to make sure the columns line up. Remember that the column position set with ^P@ is determined by the normal pitch character width. (See "Columns" and "Proportional spacing" in the "Reference Guide." INFORMATION ON SPECIFIC PRINTERS This section describes the capabilities of each printer le information (if restrictions) .UJ Microspace-justification information (if restrictions) N/A means a command has no effect on this printer. NOTES Switch settings, special features, anomalies. DRAFT PRINTER (nonbackspacing) ----- Driver: DRAFT ^PD Overprints the line twice ^PB Overprints the line three times ^PS Overprints the underscore character in a separate pass ^PT/V Prints super/subscripts with a full line between super/subscript and text .LH Sets line height only in multiples of full lines .CW N/A .PS N/A .LQ N/A .UJ N/A NOTES This driver works with any printer that doesn't automatically perform a line feed when it receives a carriage return command. All overprinting is done by returning the carriage and passing over the line again. TYPEWRITER PRINTER (backspacing) ----- Driver: TYPEWR ^PD Backspaces and overprints each character twice ^PB Backspaces and overprints each character three times ^PS s a carriage return character, and responds to a backspace command. Overprinting is done by backspacing. SIMPLE CUSTOMIZABLE PRINTERS ----- Driver: SIMPLE All print controls cause control strings (on and off) in the user area to be sent to the printer. These strings are used by both the SIMPLE and CUSTOM drivers. They can be installed with the WSCHANGE program. .LQ Controlled by user area strings .PS Controlled by user area strings .CW N/A .UJ N/A .LH N/A NOTES This printer driver prints the line in one pass, sending control strings from the user area to select print enhancements. CUSTOMIZABLE PRINTERS ----- Driver: CUSTOM All print controls cause control strings (on and off) in the user area to be sent to the printer. These strings are used by both the SIMPLE and CUSTOM drivers. They can be installed with the WSCHANGE program. .LQ ON/OFF controlled by user area strings .PS ON/OFF controlled by user area strings .LH Sets lin --- --------- 9 13.3 cpi 10 12 cpi 12 10 cpi 18 6.7 cpi 20 6 cpi 24 5 cpi .LH 1/24" resolution, use even values .UJ This printer has no incremental horizontal positioning .PS N/A .LQ N/A ANADEX 9501B, INTEQ 5100B ----- Driver: 9501B ^PY N/A ^PT/V Even superscript roll .CW .CW Font name --- --------- 7 16.7 cpi 8 15 cpi 10 12.5 cpi 12 10 cpi 14 8.3 cpi 16 7.5 cpi 20 6.2 cpi 24 5 cpi .LH 1/24" resolution, use even values .UJ This printer has no incremental horizontal positioning .PS N/A .LQ N/A C. ITOH STARWRITER 1550 AND 8510 ----- Driver: C1550 ^PY N/A ^PT/V Prints full-size characters with roll .CW .CW Font Name --- --------- 7 compressed 10 elite 12 pica 14 expanded compressed ed 12 point .LQ N/A .PL For 11 inch paper, a value of 62 is recommended .PR OR "=Landscape" or "=Portrait" to select orientation NOTES Answer yes to the "Use form feeds" prompt. This driver is configured to select all the built-in fonts in the LBP8, as well as fixed pitch cartridges and the Garland PS cartridge. Other proportional cartridges require modifying the proportional spacing tables with WSCHANGE. For more information on laser printers, see the "Laser Printers" section above. CITIZEN MSP ----- Driver: CITMSP ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .CW .CW Font Name --- --------- 7 compressed 10 elite 12 pica 14 expanded compressed 20 expanded elite 24 expanded pica .LH Use even values. Driver operates at 2/48 resolution. .PS N/A .UJ Microjustification slows printing. Continuous underlining e height only in multiples of full lines .UJ N/A .CW N/A NOTES This driver prints the line in multiple passes, sending control strings from the user area to select print enhancements. PREVIEW TO DISK ----- Driver: PRVIEW This driver prints documents to the PREVIEW.WS file to allow you to preview the format and appearance of a document before printing. Headers, footers, and pagination are shown correctly and print controls remain in the file to display onscreen attributes. Dot commands are not printed. PRINT TO DISK WITHOUT PRINT CONTROLS ----- Driver: ASCII This driver prints to the ASCII.WS file, stripping headers and footers, high bits, and print controls. PRINT TO DISK WITHOUT HEADERS AND FOOTERS ----- Driver: XTRACT This driver prints to the XTRACT.WS disk file, stripping headers and footers, but preserving high bits and print controls. ANADEX 9500A, 9500B ----- Driver: 9500 ^PY N/A ^PT/V Even superscript roll .CW .CW Font name  20 expanded elite 24 expanded pica .LQ N/A .PS N/A .UL Continuous underlining suppresses microspace justification C. ITOH F10 STARWRITER ----- Driver: QUME See Diablo 630, 1610, 1620 Daisy Wheel. Note: Proportional printing was tested with a Theme 10 wheel. CANON LBP-8A1 AND LBP-8A2 LASER PRINTER ----- Driver: LBP8 ^PY Selects italics if appropriate font installed ^PT/V Prints full-size characters with roll .PS .PS .CW OFF ON Font Name --- -- --------- 6 - 20 cpi 8 - 15 cpi 9 - 13.3 cpi 10 - 12 cpi (elite) 12 - 10 cpi 20 - 6 cpi 24 - 5 cpi 16 - 7.5 cpi - 7 (0-8) Garland 8 point - 10 (9-11) Garland 12 point - 14 (12-17) Expanded 8 point - 20 (18-30) Expand suppresses microjustification. DATAPRODUCTS PAPER TIGER SPG-8050 & SPG-8070 ----- Driver: SP8050 ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, prints full-size .LQ .LQ .PS .CW ON OFF ON Font name --- --- --- --------- 7 7 5 (0-6) condensed 10 10 8 (7-8) elite 12 12 10 (9-13) pica 14 14 - expanded condensed 20 20 16 (14-17) expanded elite 24 24 20 (18-30) expanded pica DIABLO 630, 1610, 1620 DAISY WHEEL ----- Driver: DIABLO ^PY Selects red/black ribbon color ^PT/V Prints super/subscripts in separate pass with specified roll .CW Supports any value from 0 to 30. Usual fixed pitch values are 8 (15 cpi), 10 (12 cpi), and 12 (10 cpi). .BP ON selects bidirectional printing; OFF selects left-to-right printing .LQ N/A .UL Continuous underlining does not suppresses micional print wheel has a non-standard spoke pattern, configure the printer to translate spoke position into the appropriate character. This driver sends codes to the printer to turn proportional spacing on and off, and the printer controls character to character spacing. NOTES The proportional spacing tables are set up for a Diablo metal 96 character BOLD PS wheel. DIABLO 630 DAISY WHEEL, EXTENDED CHARACTER SET ----- Driver: 630ECS ^PY N/A ^PT/V Prints super/subscripts in separate pass with specified roll .CW Supports any value from 0 to 30. Usual fixed pitch values are 8 (15 cpi), 10 (12 cpi), and 12 (10 cpi). .LQ N/A .UL Continuous underlining does not affect microspace justifi- cation .PS ON selects proportional spacing; OFF selects fixed pitch spacing. If a proportional print wheel has a non-standard spoke pattern, configure the printer to translate spoke position into the appropriat OFF. EPSON FX-85, FX-185 AND FX-286 ----- Driver: FX85 ^PY Selects draft quality italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --------- 6 - - compressed elite 7 - - compressed 10 - - elite 12 12 11 (10-13) courier 14 - - expanded compressed 20 - - expanded elite 24 24 22 (20-30) expanded courier .UL Continuous underlining suppresses microspace justification .UJ Microspace justification slows printing. Default is OFF. .UJ must be on for proportional text to be right-justified. EPSON LQ-800 AND LQ-1000 ----- Driver: LQ800 ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --rospace justification. Continuous underlining may be irregular. .PS ON selects proportional spacing; OFF selects fixed pitch spacing. If a proportional print wheel has a non-standard spoke pattern, configure the printer to translate spoke position into the appropriate character. This driver explicitly positions each character when proportional spacing is selected. NOTES The proportional spacing tables are set up for a Diablo metal 96 character BOLD PS wheel. DIABLO 630 DAISY WHEEL WITH WP OPTIONS ----- Driver: 630WP ^PY Selects red/black ribbon color ^PT/V Prints super/subscripts in separate pass with specified roll .CW Supports any value from 0 to 30. Usual fixed pitch values are 8 (15 cpi), 10 (12 cpi), and 12 (10 cpi). .LQ N/A .UL Continuous underlining does not affect microspace justifi- cation .PS ON selects proportional spacing; OFF selects fixed pitch spacing. If a proporte character. This driver sends codes to the printer to turn proportional spacing on and off, and the printer controls character to character spacing. NOTES The proportional spacing tables have been set up for a Diablo metal 96 character BOLD PS wheel. DIABLO C150 & C200 COLOR JET PRINTERS ----- Driver: C150 ^PY Selects red/black ink .CW 10 characters per inch only .LH 1/30" resolution .PS N/A .LQ N/A EPSON FX-80 AND FX-100 ----- Driver: FX80 ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .CW .CW Font Name --- --------- 7 compressed 10 elite 12 pica 14 expanded compressed 20 expanded elite 24 expanded pica .LH Use even values. Driver operates at 2/48" resolution. .LQ N/A .PS N/A .UL Continuous underlining suppresses microspace justification .UJ Microspace justification slows printing. Default is------- - - - compressed script 6 6 - compressed elite 7 7 6 (0-7) compressed 8 - subscript 15 cpi 10 10 - elite 12 12 10 (8-16) pica 14 14 - expanded compressed 16 - expanded script 20 20 - expanded elite 24 24 - expanded courier EPSON LQ-1500, VERSION 2.0 ----- Driver: LQ1500 ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --------- 7 - - compressed 10 10 - elite - - 8 (1-9) subscript 15 cpi 12 12 11 (10-13) courier 14 - - expanded compressed - - 15 (14-18) expanded script 20 20 - expanded elite 2 EPSON MX-80 AND MX-100 WITH GRAFTRAX+ EPSON MX-80 III AND MX-100 III ----- Driver: MX80 ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .CW .CW Font Name --- --------- 7 compressed 12 pica 14 expanded compressed 24 expanded pica .LH Use even values. Driver operates at 2/48" resolution. .LQ N/A .PS N/A .UL Continuous underlining suppresses microspace justification .UJ Microspace justification slows printing. Default is OFF. NOTES Older MX-80 and MX-100 printers don't have graphics mode (for fine horizontal spacing), variable line height setting, printer controlled underlining, or printer controlled super/subscripts. If you have one of these printers, use the DRAFT driver, or adapt the CUSTOM or SIMPLE driver to your needs. EPSON RX-80 AND RX-100 ----- Driver: RX80 ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with rold which fonts you have downloaded. Font Installation Internal Fonts: The fonts that came with your printer are already in memory and ready to use. Different LaserJet models come with different sets of internal fonts. Cartridges: Cartridges containing a variety of character fonts can be inserted into any LaserJet model. See your printer manual for instructions. The font selection guidelines in the sections below contain information about specific cartridges. The letter that identifies your cartridge is on the front label, directly following the number 92286. For example, the Y cartridge is labeled 92286Y. Soft fonts: Soft, or downloadable, fonts are supplied on disk. These fonts are not explicitly supported by WordStar. LaserJet Font Selection Each LaserJet font has several characteristics associated with it. When a printer driver specifies font characteristics to the LaserJet, the LaserJet searches its available fonts for the best match to the cha4 24 20 (19-30) expanded courier .UL Continuous underlining suppresses microspace justification. In proportional fonts, continuous underlining may appear broken between words. NOTES If you have an older LQ-1500 (firmware version 1.8), your printer will have horizontal position registration problems. For best results, contact your printer dealer about a ROM upgrade. EPSON LX-80 - Driver: LX80 ^PY Selects draft mode italics ^PT/V Prints half height if .SR 0, else full height with roll .LQ .LQ .CW OFF ON Font Name --- --- --------- 7 - compressed 10 - elite 12 12 courier 14 - expanded compressed 20 - expanded elite 24 24 expanded courier .LH Use even values. Driver operates at 2/48" resolution. .PS N/A .UL Continuous underlining suppresses microspace justification .UJ Microspace justification slows printing. Default is OFF. l .CW .CW Font Name --- --------- 7 compressed 10 elite 12 pica 14 expanded compressed 20 expanded elite 24 expanded pica .LH Use even values. Driver operates at 2/48" resolution. .LQ N/A .PS N/A .UL Continuous underlining suppresses microspace justification .UJ Microspace justification slows printing. Default is OFF. HEWLETT-PACKARD LASERJET PRINTERS The following information applies to the LaserJet, the LaserJet+, and the LaserJet 500+. For general information on laser printers, see the "Laser Printers" section above. The LaserJet Fonts The LaserJet has three different types of fonts: - The "internal" fonts that came with the printer - Plug-in cartridges - Soft fonts that must be downloaded through your computer. (Only the LaserJet+ and LaserJet 500+ can use downloaded fonts.) The fonts available in your LaserJet depend on which cartridge you have installed anracteristics requested. The following table describes these characteristics, in the order in which the LaserJet evaluates them when selecting a font. Characteristic WordStar Control -------------- ----------------- * Orientation (portrait or landscape) .PR OR=P/L * Symbol Set (Roman-8, USASCII, Printer driver Line Draw, etc.) * Proportional or fixed spacing .PS ON/OFF * Print pitch (fixed-width fonts) .CW * Character height (point size) .CW * Character style (upright or italic) ^PY * Stroke weight (light, medium, bold) ^PB Note that symbol set is high in the list of characteristics: make sure that the driver you select is compatible with the symbol set of your cartridge or downloaded fonts. The symbol sets used by each driver are listed in the table in the next section. For example, if your cartridge has the USASCII Symbol Set, you can't use the HPLJ:U driver because it uses only the Roma installed, the table is still used, and the closest available font is used. This may cause the spacing to appear too tight or too loose. In this column, the number is the point size, R stands for regular, B stands for bold, and I stands for italics (the LaserJet has separate tables for each of these). o The font cartridges that work best with the symbol sets and tables used by the driver The cartridges listed are the only ones directly supported for use with WordStar. If your cartridge is not listed, you may still be able to use it. Look at the font information below and try the most compatible driver. You may need to try different dot command settings or another driver. The HPLJET is the most "general purpose" driver, so if you're not sure which driver to use, try it first. Fixed-width Proportional Proportional Downloaded Driver Symbol Set Symbol Set Tables Fonts/Cartridges ------ ----------- ---he charts show the fonts used for both fixed and proportional spacing and for different character width (.CW) settings. The recommended .CW settings are shown first. The settings in parentheses select the same font, but the spacing of characters within a line may appear tighter or looser. After the name of each font, the charts note whether regular (R), bold (B), and italic (I) fonts are available. If a bold font is not available, you can use the ^PD (double strike) command to get a boldface effect. The last column shows whether you can print in landscape (chosen in WordStar with .PR OR=L) as well as portrait orientation. To use a particular font, choose the settings listed. For example, to use the Times Roman 8 font with the HPLJET printer driver, insert the F cartridge, turn .PS on and set character width to .CW 7. HP LASERJET, LASERJET+ (F cartridge and others) ----- Driver: HPLJET ^PY Selects italics if appropriate font installed ^PT/V Prints full-size chan-8 Symbol Set. LaserJet Printer Drivers WordStar provides two printer drivers for use with different LaserJet font cartridges. Each of these drivers lets you print with several of the available fonts. You can use any of these drivers with the LaserJet, LaserJet+, or LaserJet 500+, depending on the cartridge. Refer to the table below to see which driver works best for you. The table lists the following information for each driver: o The symbol sets used for fixed and proportional spacing These must correspond to the symbol sets on the installed fonts you want to use. The "Default" symbol set refers to the one the LaserJet defaults to. o The proportional-spacing tables used by the driver These tables are part of the LaserJet's method of proportional spacing. The tables determine the width of each character in a proportionally spaced font. The fonts corresponding to these tables are used if available. If the corresponding font is not --------- ------------- ---------------- HPLJET Default Default TmsRmn 8R, F, P, most fixed 10R,10B,10I Helv 14B HPLJ:B Default USASCII TmsRmn 8R, B 10R,10B,10I Helv 14B HPLJ:U Roman-8, Roman-8 Helv 6R,8R, U, V Line Draw 10R,12R,14R HPLJ:Y PCSET1 USASCII TmsRmn Y, AC PCSET2 6,8,10,12,14 (all in R,B,I) 18B,24B,30B HPL:AD Roman-8, Roman-8 TmsRmn AD Line Draw 6,8,10,12,14 (all in R,B,I) 18B,24B,30B The printer driver charts below show the actual fonts that print with each printer driver and the recommended font cartridges. Tracters with roll Cartridge/ Soft font .PS .CW Font/Point Size R B I Landscape --------- --- -------- --------------- - - - --------- F on 7 (0-7) Times Roman 8 x 9 (8-11) Times Roman 10 x x x 13 (12-30) Helvetica 14 x off 7 (0-11) Line Printer 8.5 x 12 (12-30) Courier 12 x x P on 9 (0-30) Times Roman 10 x x x x off 7 (0-11) Line Printer 8.5 x 12 (12-30) Courier 12 x x (0-30) The following fixed pitch fonts may be available depending on your cartridge. (Note that these are measure by pitch, not by point size.): .CW Font Name --- --------- 7 16.7 pitch 10 12 pitch 12 10 pitch 15 8.1 pitch 18 6.5 pitch 21 5.8 pitch 27 4.5 pitch .LQ N/A .PL  unless the LaserJet+ is used. .LQ N/A .PL For 11 inch paper, a value of 62 is recommended. Too large a value will cause text to be lost at page bottom. .PR OR "=Landscape" or "=Portrait" to select orientation. NOTES Answer yes to the "Use form feeds" prompt. This driver has proportional spacing tables for all fonts in the B cartridge. .p HP LASERJET, LASERJET+ (U and V cartridges) ----- Driver: HPLJ:U ^PY Selects italics if appropriate font installed ^PT/V Prints full-size characters with roll Cartridge/ Soft font .PS .CW Font/Point Size R B I Landscape --------- --- -------- --------------- - - - --------- U on 5 (0-5) Helvetica 6 x 7 (6-7) Helvetica 8 x 9 (8-9) Helvetica 10 x 11 (10-11) Helvetica 12 x 13 (12-30) Helvetica 14 x off 7 (0-11) Letter Gothic 9.5 x 12 (12-30 cartridges. .p HP LASERJET, LASERJET+ (Y cartridge, AC TmsRmn) ----- Driver: HPLJ:Y ^PY Selects italics if appropriate font installed ^PT/V Prints full-size characters with roll Cartridge/ Soft font .PS .CW Font/Point Size R B I Landscape --------- --- -------- --------------- - - - --------- Y on none available off 7 (0-11) Line Printer 8.5 x x 12 (12-30) PC Courier 12 x x x AC* on 5 (0-5) Times Roman 6 x x x x 7 (6-7) Times Roman 8 x x x x 9 (8-9) Times Roman 10 x x x x 11 (10-11) Times Roman 12 x x x x 13 (12-14) Times Roman 14 x x x x 16 (15-18) Times Roman 18 x x 20 (19-24) Times Roman 24 x x 25 (25-30) Times Roman 30 x x off 7 (0-11) Line Printer 8.5 x x (0-30) For 11 inch paper, a value of 62 is recommended. Too large a value will cause text to be lost at page bottom. .PR OR "=Landscape" or "=Portrait" to select orientation. NOTES Answer yes to the "Use form feeds" prompt. This driver has proportional spacing tables for all fonts in the F and P cartridges. It should also work with many fixed width cartridges. .p HP LASERJET, LASERJET+ (B cartridge) ----- Driver: HPLJ:B ^PY Selects italics if appropriate font installed ^PT/V Prints full-size characters with roll Cartridge/ Soft font .PS .CW Font/Point Size R B I Landscape --------- --- -------- --------------- - - - --------- B on 7 (0-7) Times Roman 8 x 9 (8-11) Times Roman 10 x x x 13 (12-30) Helvetica 14 x off 7 (0-11) Line Printer 8.5* x x 12 (12-30) Courier 12 x x * Line printer 8.5 is not available in portrait mode ) Courier 12 x x (0-30) V on 5 (0-5) Helvetica 6 x landscape only* 7 (6-7) Helvetica 8 x "* 9 (8-9) Helvetica 10 x "* 11 (10-11) Helvetica 12 x "* 13 (12-30) Helvetica 14 x "* off 7 (0-11) Letter Gothic 9.5 x ** 12 (12-30) Courier 12 x * No proportional font is available in portrait orientation. ** With fixed spacing, in portrait orientation, .CW7 (0-11) produces Line Printer 8.5 on the LaserJet+ and Courier 12 on the LaserJet. .LQ N/A .PL For 11 inch paper, a value of 62 is recommended. Too large a value will cause text to be lost at page bottom. .PR OR "=Landscape" or "=Portrait" to select orientation. NOTES Answer yes to the "Use form feeds" prompt. This driver has proportional spacing tables for all fonts in the U and V 12 (12-30) Courier 12 x * Other .CW settings may access additional fonts if a cartridge is also installed. .LQ N/A .PL For 11 inch paper, a value of 62 is recommended. Too large a value will cause text to be lost at page bottom. .PR OR "=Landscape" or "=Portrait" to select orientation. NOTES Answer yes to the "Use form feeds" prompt. This driver is for use with the Y cartridge, which provides an IBM PC compatible symbol set. In addition, this driver has complete proportional spacing tables for the AC set of downloadable TmsRmn fonts. .p HP LASERJET, LASERJET+ (AD TmsRmn) ----- Driver: HPL:AD ^PY Selects italics if appropriate font installed ^PT/V Prints full-size characters with roll Cartridge/ Soft font .PS .CW Font/Point Size R B I Landscape --------- --- -------- --------------- - - - --------- AD* on 5 (0-5) Times Roman 6 x x x x 7 (6-7) Times Roman 8 .PR OR "=Landscape" or "=Portrait" to select orientation. NOTES Answer yes to the "Use form feeds" prompt. This driver is for use with the AD TmsRmn downloaded fonts, and for a ROMAN8 or ROMAN8+LINEDRAW fixed width font cartridge. The driver includes complete proportional spacing tables for the AD set of downloadable TmsRmn fonts. HP THINKJET, IBM mode ----- Driver: HPTJI ^PY N/A ^PT/V Prints full-size characters with roll .CW .CW Font Name --- --------- 7 compressed 10 elite 12 pica 14 expanded compressed 20 expanded elite 24 expanded pica .LH Use even values. Driver operates at 2/48" resolution. .LQ N/A .PS N/A .UL Continuous underlining suppresses microspace justification .UJ Microspace justification slows printing. Default is ON. NOTES This printer does not have a true 10 pitch font, so character widths are not exact, and ^P@ does not align exac --- --------- 7 compressed 12 pica 14 expanded compressed 24 expanded pica .LH Use even values. Driver operates at 2/48" resolution. .LQ N/A .PS N/A .UL Continuous underlining suppresses microspace justification .UJ Microspace justification slows printing. Default is OFF. IBM PROPRINTER 4201 ----- Driver: IBMPRO ^PY N/A ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON Font Name --- --- --------- 7 7 compressed 10 10 elite 12 12 pica 14 14 expanded compressed 20 20 expanded elite 24 24 expanded pica .LH Use even values. Driver operates at 2/48" resolution. .PS N/A .LQ Has same effect as ^PD .UL Continuous underlining suppresses microspace justification .UJ Microspace justification slows printing. Default is OFF. NOTES If you have a Proprinter XL, y x x x x 9 (8-9) Times Roman 10 x x x x 11 (10-11) Times Roman 12 x x x x 13 (12-14) Times Roman 14 x x x x 16 (15-18) Times Roman 18 x x 20 (19-24) Times Roman 24 x x 25 (25-30) Times Roman 30 x x off 7 (0-11) Line Printer 8.5 x 12 (12-30) Courier 12 x x (0-30) The following fixed pitch fonts may be available depending on your cartridge. (Note that these are measure by pitch, not by point size.): .CW Font Name --- --------- 7 16.7 pitch 10 12 pitch 12 10 pitch 15 8.1 pitch 18 6.5 pitch 21 5.8 pitch 27 4.5 pitch .LQ N/A .PL For 11 inch paper, a value of 62 is recommended. Too large a value will cause text to be lost at page bottom. tly with text. Because the printer has an automatic page offset, set the WordStar page offset to zero. IBM COLOR PRINTER 5182 ----- Driver: IBMCLR ^PY Selects red/black ribbon color ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .PS .CW OFF ON ON Font Name --- --- -------- --------- 7 7 5 (0-6) compressed 10 10 8 (7-8) elite 12 12 10 (9-13) pica 14 14 - expanded compressed 20 20 15 (14-16) expanded elite 24 24 20 (17-30) expanded pica .LH Use even values. Driver operates at 2/48" resolution. .LQ Has same effect as ^PD .UL Underlining may be irregular with microspace justification on .UJ Microspace justification slows printing. Default is OFF. IBM GRAPHICS PRINTER 5152 ----- Driver: IBMGR ^PY N/A ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .CW .CW Font Name ou can use WSCHANGE to patch in the extra features. IBM QUIETWRITER 5201 ----- Driver: IBMQUI ^PY Toggles between A and * font cartridge. Set character width to match cartridge in use. (A cartridge uses current ^PN character width; * cartridge uses ^PA character width.) ^PT/V Prints full-size characters with roll .CW Selects character width. Character width must correspond to the cartridge being used. .LQ N/A .PS ON selects proportional spacing, OFF selects fixed pitch spacing IBM WHEELPRINTER 5216 ----- Driver: IBMWP ^PY N/A ^PT/V Printer determined roll if .SR 0 .CW Selects character spacing. Any value from 0 to 30 is supported. Usual fixed pitch values are 8 (15 characters per inch), 10 (12 cpi) and 12 (10 cpi). .LQ N/A .UL Continuous underlining does not affect microjustification .PS ON selects proportional spacing, OFF selects fixed pitch. This driver sends codes to the prin Prints full-size characters with specified even roll .LQ .LQ .CW OFF ON Font Name --- --- --------- 6 - compressed elite 7 - compressed 10 10 elite 12 12 pica 14 - expanded compressed 20 - expanded elite 24 - expanded pica .LH Use even values. Driver operates at 2/48" resolution. .UJ N/A NOTES This printer is not capable of incremental horizontal positioning. As a result, microspace justification is not possible. In addition, when changing character widths, characters may not align to closer than one full character width. Also, page offsets smaller than a character will not work. MPI PRINTMATE 99 & 350 ----- Driver: MPI99 ^PY N/A ^PT/V Even superscript roll .LQ .LQ .CW OFF ON Font name --- --- --------- 7 - 17.1 cpi 10 - 12 cpi 12 12 10 cpi 14 - 8.5 cp --- --- ------ --------- 6 6 - compressed elite 7 7 6 (0-8) compressed 8 8 - subscript 15 cpi 10 10 - elite 12 12 10 (9-17) pica 14 14 - expanded compressed 16 16 - expanded script 20 20 - expanded elite 24 24 20 (18-26) expanded courier 30 30 30 (27-30) triple elite NEC SPINWRITER 2000R, 3500R NEC SPINWRITER 2010, 3510, 7710 NEC SPINWRITER 2030, 3530, 7730 ----- Driver: SPINWR See Diablo 630, 1610, 1620 Daisy Wheel. .BP N/A NOTES The proportional spacing tables are set up for a NEC BOLD PS wheel. Proportional spacing is not supported on the 2010 and 2030. NEC SPINWRITER 2015, 3515, 7715 ----- Driver: DIABLO See Diablo 630, 1610, 1620 Daisy Wheel. .BP N/A NOTES The proportional spacing tables are set up for a NEC BOLD PS wheel. This printer doester to turn proportional spacing on and off, and the printer controls character to character spacing. NOTES The proportional spacing tables are set up for an IBM BOLD PS wheel. IBM WHEELPRINTER 5223 E ----- Driver: IBMWPE ^PY N/A ^PT/V Printer determined roll if .SR 0 .CW Selects character spacing. Any value from 0 to 30 is supported. Usual fixed pitch values are 8 (15 characters per inch), 10 (12 cpi) and 12 (10 cpi). .LQ N/A .UL Continuous underlining does not affect microjustification. Continuous underlining will be somewhat irregular. .PS ON selects proportional spacing, OFF selects fixed pitch. This driver will send codes to the printer to turn propor- tional spacing on and off, and the printer will control character to character spacing. NOTES The proportional spacing tables are set up for an IBM BOLD PS wheel. MANNESMANN TALLY MT-160L ----- Driver: MT160L ^PY N/A ^PT/Vi 20 - 6 cpi 24 24 5 cpi .LH 1/24" resolution, use even values .PS N/A .UJ N/A NEC PINWRITER P2-3, P2-6, P3-3, P6-6 ----- Driver: NECP2I ^PY N/A ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON Font Name --- --- --------- 7 - compressed 10 10 elite 12 12 pica 14 - expanded compressed 20 20 expanded elite 24 24 expanded pica .PS N/A .UL Continuous underline suppresses microspace justification .UJ Microspace justification slows printing. Default is OFF. NOTES Page offsets smaller than the character width in effect are not supported. Make sure switch 5 on the printer is off. NEC PINWRITER P5XL, P6, P7 ----- Driver: NECP5 ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON .PS ON Font Name  not respond correctly to the phantom blank and phantom rubout characters, and may lose horizontal alignment if they are included in your document. Proportional spacing is not supported on the 2015. NEC SPINWRITER 2050, 3550, 8850 ----- Driver: SPIN50 See Diablo 630, 1610, 1620 Daisy Wheel. .BP N/A NOTES The proportional spacing tables are set up for a NEC BOLD PS wheel. Proportional spacing is not supported on the 2050. OKIDATA MICROLINE 84 STEP 2, STANDARD ----- Driver: ML84 ^PY N/A ^PT/V Printer controlled if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON Font Name --- --- --------- 7 7 compressed 10 10 elite 12 12 pica 14 14 expanded compressed 20 20 expanded elite 24 24 expanded pica .PS N/A .UJ In draft mode (.LQ OFF), this printer is not capable of microspace justification. Different character widths may not line upressed 12 12 pica 14 expanded compressed 24 24 expanded pica .PS N/A .UJ In draft mode (.LQ OFF), this printer is not capable of microspace justification. Different character widths may not line up correctly. NOTES Page offsets smaller than the character width in effect are not supported. OKIDATA MICROLINE 182, STANDARD ----- Driver: ML182 OKIDATA MICROLINE 182, IBM ML182I ^PY N/A ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON Font Name --- --- --------- 7 - compressed 10 10 elite 12 12 pica 14 - expanded compressed 20 20 expanded elite 24 24 expanded pica NOTES This printer is not capable of incremental horizontal positioning, so microspace justification is not possible. In addition, when changing character widths, characters may not align to Driver: ML292 OKIDATA MICROLINE 292, IBM ML292I ^PY Selects italics. No half height italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --------- 7 7 7 (6-8) compressed 10 10 9 (9-10) elite 12 12 11 (11-12) pica 14 14 13 (13-17) expanded compressed 20 20 18 (18-20) expanded elite 24 24 22 (21-30) expanded pica NOTES This printer does not have control strings to select proportional and fixed pitch printing. This choice can only be made through the printer's own menu functions. For reasonable results, make sure that your document and printer are both fixed pitch or both proportional. OKIDATA PACEMARK 2410, STANDARD ----- Driver: PM2410 ^PY N/A ^PT/V Prints full-size characters with roll .LQ .LQ .CW OFF ON Font Name --- --- ----- correctly. NOTES Page offsets smaller than the character width in effect are not supported. OKIDATA MICROLINE 92 AND 93, STANDARD ----- Driver: ML92 ^PY N/A ^PT/V Printer controlled if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON Font Name --- --- --------- 7 compressed 10 10 elite 12 12 pica 14 expanded compressed 20 20 expanded elite 24 24 expanded pica .PS N/A .UJ In draft mode (.LQ OFF), this printer is not capable of microspace justification. Different character widths may not line up correctly. NOTES Page offsets smaller than the character width in effect are not supported. OKIDATA MICROLINE 84, 92, 93, IBM PLUG & PLAY ----- Driver: ML92I ^PY N/A ^PT/V Printer controlled if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON Font Name --- --- --------- 7 comp closer than one full character width. Also, page offsets smaller than a character do not work. OKIDATA MICROLINE 192, STANDARD ----- Driver: ML192 OKIDATA MICROLINE 192, IBM ML192I ^PY Selects draft mode italics. No half height italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --------- 7 - - compressed 10 10 9 (9-10) elite 12 12 11 (11-17) pica 14 - - expanded compressed 20 20 18 (18-20) expanded elite 24 24 22 (21-30) expanded pica NOTES This printer does not have control strings to select proportional and fixed pitch printing. This choice can only be made through the printer's own menu functions. For reasonable results, make sure that your document and printer are both fixed pitch or both proportional. OKIDATA MICROLINE 292, STANDARD --------- 7 - compressed 10 10 elite 12 12 pica 14 - expanded compressed 20 20 expanded elite 24 24 expanded pica .UJ Compressed and expanded compressed characters will not be microspace justified. Also, they may not align perfectly with other character widths. NOTES If you have the IBM-compatible printer, do not use this installation. Instead, choose the IBM Graphics Printer. PANASONIC KX-P1090 ----- Driver: P1090 ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .CW .CW Font Name --- --------- 7 compressed 10 elite 12 pica 14 expanded compressed 20 expanded elite 24 expanded pica .LH Use even values. Driver operates at 2/48" resolution. .LQ N/A .PS N/A .UL Continuous underlining suppresses microspace justification. QUME SPRINT SERIES ----- Dri fonts in the LP4080R, in both portrait and landscape mode. For more information on laser printers, see the "Laser Printers" section above. SILVER REED EXP-550/500 DAISY WHEEL ----- Driver: SR550 See Diablo 630, 1610, 1620 Daisy Wheel. NOTES Proportional spacing tables (Model 500 does not support proportional printing) are set up for a Silver Reed PS wheel. You need to change the switch settings for proportional fonts. Set the SW-1 switches accordingly: For proportional fonts: 1, 2 ON, 3-6 OFF For nonproportional fonts: All OFF. STAR MICRONICS GEMINI 10X AND 15X ----- Driver: GEM10X ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .CW .CW Font Name --- --------- 7 compressed 10 elite 12 pica 14 expanded compressed 20 expanded elite 24 expanded pica .LH Use even values. Driver operates at 2/48" resolution. .LQ N/A .PS N/AON Font Name --- --- ------ --------- 7 - - compressed 10 - 10 (9-12) elite 12 12 - pica 14 - - expanded compressed 20 - 20 (18-24) expanded elite 24 24 - expanded pica .UL Continuous underlining suppresses microjustification .UJ Microjustification slows printing .PS Draft quality proportional NOTE: Because of printer firmware limitations, combinations of print enhancements may cause poor printed output. TANDY DMP-130 MATRIX PRINTER ----- Driver: DMP13 ^PY Selects italics ^PT/V Prints half-size characters (17 cpi, or 8.5 cpi for expanded fonts) .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --------- 7 - - compressed - 10 - elite 12 12 11 (11-13) pica 14 - - expanded compressever: QUME See Diablo 630, 1610, 1620 Daisy Wheel. .PS N/A NOTES Make sure you use the appropriate switch settings for your interface module. Set the switches on the module accordingly: IBM Centronics module: 1, 2, 8, 9 ON. All others OFF. RS-232-C module: 1, 2 ON. All others OFF. QUME SPRINT WITH WP OPTION ----- Driver: QUMEWP See Diablo 630, 1610, 1620 Daisy Wheel. .PS N/A RICOH LP4080R LASER PRINTER ----- Driver: LP4080 ^PY N/A ^PT/V Prints full-size characters with roll .PS .PS .CW OFF ON Font Name --- --- --------- 8 - 15 cpi 10 - 12 cpi elite 12 - 10 cpi courier - 11 (0-30) proportional .LQ N/A .PL For 11 inch paper, a value of 62 is recommended .PR OR "=Landscape" or "=Portrait" to select orientation NOTES Answer yes to the "Use form feeds" prompt. This driver is configured to select all the built in .UL Continuous underlining suppresses microspace justification .UJ Microspace justification slows printing. Default is OFF. STAR MICRONICS NX-10 ----- Driver: NX10 ^PY Selects draft quality italics ^PT/V Prints half-size if .SR 0; otherwise full-size with roll .LQ .LQ .PS .CW OFF ON ON Font Name --- --- --- --------- 6 - 4 (0-5) compressed elite 7 - 7 (6-7) compressed 10 - 9 (8-9) elite 12 12 11 (10-12) pica 14 - - expanded compressed 20 - - expanded elite 24 24 - expanded pica .UL Continuous underlining suppresses microjustification .UJ Microjustification slows printing STAR MICRONICS SG10 ---- Driver: SG10 STAR MICRONICS SG10I ---- Driver: SG10I ^PY Selects draft mode italics ^PT/V Prints full size characters with roll .LQ .LQ .CW OFF ON .PS d - 20 - expanded elite 24 24 22 (21-30) expanded pica NOTES Printer must be in Tandy mode. TANDY DMP-2100P MATRIX PRINTER ----- Driver: D2100P ^PY N/A ^PT/V Prints full-size characters with roll .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --------- 7 - - compressed - 10 9 (9-10) elite 12 12 11 (11-13) pica 14 - - expanded compressed - 20 18 (18-20) expanded elite 24 24 22 (21-30) expanded pica NOTES Printer must be in Tandy mode. TANDY DMP-2110 MATRIX PRINTER ----- Driver: D2110 ^PY Selects italics ^PT/V Prints half-size if .SR 0; otherwise, full-size with roll .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --------- 7 - - compressed - 10 9 (9-10) elite 12 12 11 (11-13) 10 10 (9-11) elite 12 12 12 (12-17) pica 14 14 - expanded compressed 20 20 20 (18-22) expanded elite 24 24 24 (23-30) expanded pica TOSHIBA P351, P351C, P341, P321 ----- Driver: P351 ^PY Selects italics ^PT/V Prints full-size characters with roll .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --------- 7 - - compressed - 10 9 (0-9) elite 12 12 11 (10-14) pica 14 - - expanded compressed - 20 18 (15-19) expanded elite 24 24 22 (20-30) expanded pica TOSHIBA P1340 ----- Driver: P1340 ^PY No effect ^PT/V Prints full-size characters with roll .LQ .LQ .CW OFF ON Font Name --- --- --------- 10 10 elite 12 12 pica 14 - expanded compressed 20 - expanded elite 24 24 å pica 14 - - expanded compressed - 20 18 (18-20) expanded elite 24 24 22 (21-30) expanded pica NOTES Printer must be in Tandy mode. TANDY DWP-230 DAISY WHEEL ----- Driver: DWP230 TANDY DWP-520 DAISY WHEEL ----- Driver: DWP520 ^PY N/A ^PT/V Prints super/subscripts in separate pass with specified roll .CW Supports any value from 0 to 30. Usual fixed pitch values are 10 (12 cpi) and 12 (10 cpi). .BP N/A .LQ N/A .PS ON selects proportional spacing. Spacing tables are set up for a DIABLO BOLD PS wheel, #303029-01. .UL Continuous underlining does not suppress microjustification for DWP230; does suppress it for DWP520. TEXAS INSTRUMENTS 855 AND 865 ----- Driver: TI855 ^PY N/A ^PT/V Prints full-size characters with roll .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --------- 6 6 6 (0-8) compressed 10expanded pica TOSHIBA P1351 ----- Driver: P1351 ^PY N/A ^PT/V Prints full-size characters with roll .LQ .LQ .CW OFF ON .PS ON Font Name --- --- ------ --------- 7 - - compressed - 10 9 (0-9) elite 12 12 11 (10-14) pica 14 - - expanded compressed - 20 18 (15-19) expanded elite 24 24 22 (20-30) expanded pica ZENITH Z-125AA ----- Driver: Z125 ^PY N/A ^PT/V No incremental vertical positioning .CW .CW Font name --- --------- 7 16.7 cpi 9 13.3 cpi 10 12 cpi 12 10 cpi 14 8.3 cpi 18 6.7 cpi 20 6 cpi 24 5 cpi .LH Full lines only .UJ N/A .PS N/A .LQ N/A  ååååå!ååååå"ååååå#ååååå$ååååå%ååååå&ååååå'ååååå