03.01.2013 Views

Untitled - TRS-80 Color Computer Archive

Untitled - TRS-80 Color Computer Archive

Untitled - TRS-80 Color Computer Archive

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Doctor A5Cll�����<br />

I(<br />

by Richard E. Esposito and Ralph E. RamhoJJ<br />

Having technical dijJlcuWes? Consult the Doctor Jor an answer. Due<br />

to the volume oj mail Doctor ASCII receives, we cannot guarantee that<br />

your query will be published. Please send a self-addressed, stamped<br />

envelope with all letters to Doctor ASCII. do HOT CoCo. <strong>80</strong> Pine St ..<br />

Peterborough, NH 03458.<br />

Q<br />

A<br />

Is there any software that will allow !he CoCo to function as a<br />

• DEC VT100 terminal?-Bernadine Esposito. Columbia. MD<br />

HSL Designs (Dept. CS, 1933 East Yale Drive, Tempe, AZ 85283)<br />

• sells VTI0 lNT52 source code (Flex or OS-9; 8,000 lines for $25)<br />

for their 6<strong>80</strong>9E CRT terminal board_ You could modify HSL's code for<br />

a CoCo running Word-Pal< and an RS-232 ACIA module_<br />

Q<br />

How can I attach the newer CoCo keyboards with the transpar­<br />

.ent ribbon cable to my older grey CoCo?-B. P. Samuel. Cincinnati.<br />

OH<br />

A<br />

Contact Spectrum Projects (P.O. Box 21272, 93-15 86th Drive,<br />

• Wood haven. NY 11421, 718-441-2<strong>80</strong>7). Explain that you need<br />

an adapter to connect a new-type keyboard to an older machine. These<br />

adapters are a Tandy product distributed for keyboard upgrades when<br />

the CoCo 2 was introduced.<br />

Q<br />

I use a black-and-white TV set with my CoCo. Will I get sharper<br />

• letters if I switch to a direct-video monitor? How can I extend to<br />

<strong>80</strong> or 64 columns for word processihg? Will Telewriter-64 give me the<br />

screen format I want? -Howard D. Clark. EI Paso. TX<br />

A<br />

If you have a late-model TV that is in good shape, a monitor<br />

.alone will not significantly increase display quality_ If you plan<br />

to use your CoCo for extensive word processing, get PBJ's Word-Pal<<br />

and a monochrome monitor with a bandwidth of at least 18 MHz. You<br />

could then use Stylograph III or Dynastar with Flex or OS-9, or the<br />

Word-Pak version of Elite-Word with Disk Extended <strong>Color</strong> Basic, and<br />

have a true <strong>80</strong>-column display. Telewriter-64 gives a legible 51-col­<br />

umn display and a marginal 64-column display.<br />

Q<br />

I purchased OS-9 and Basic-D9. I find the documentation con­<br />

.fusing and frustrating_ Are there any publications that give a<br />

beginner a better chance?-Ronald Mattfeld. M811chester. MD<br />

A<br />

Add these two books to your library: The Official OS-9 Tour Guide<br />

.(Microware Systems Corp., 1866 NW I 14th St., Des Moines, IA<br />

50322,515-520-2535; $18.95) and The Complete Rainbow Guide to<br />

OS-9 (Falsoft Inc., The Falsoft Building, 9529 U.S_ Highway 42. P_O.<br />

Box 385, Prospect, KY 40059, 502-228-4492; $19.95). Dale Puckett<br />

wrote both books_<br />

10 HOT CoCo February 1986<br />

Eds. note-For those oj you who missed our update in last month's<br />

Letters to the Editor. Doctor ASCII incorrectly stated in his October 1985<br />

column (HOT CoCo, p. 13) and again in his Best Bets For Christmas<br />

(HOT CoCo. December 1985. p. 42) piece that SpectroSystem's ADOS<br />

only works with RSDOS version 1_0_ However, ADOS is compatible with<br />

any version oj Disk Basic.<br />

Q<br />

A<br />

Is there a way to read the CoCo 2's serial I/O (inpuUoutput) port<br />

• from either Basic or Assembly?- 10m Bensy. Bakersfield. CA<br />

Yes. Program Listing I, BIT232, is a Basic program that loads in<br />

.a machine-language program to do just that. Since the CoCo<br />

uses software control of the RS-232 port, the timing is critical and<br />

Basic is just too slow for normal baud rates.<br />

You can use BlT232 alone for chatting with a friend via modem, or<br />

you can use the LININ and LINOUT routines from a Basic program to<br />

inpuUoutput a line of up to 256 characters to or from the RS-232 port.<br />

The SET PAR routine lets you set parameters such as the baud rate.<br />

number of bits. and so on. A unique feature of SETPAR is its ability<br />

to change handshaking modes for the LINOUT routine. You can choose<br />

either a modem (CD line) or printer (busy check on the RS-232 IN line)<br />

handshake mode. Run the program for operating instructions.<br />

1� , BIT232.BAS V1.�<br />

2� CLS:PRINT" BIT232 PROGRAM"<br />

3� PRINT" BY<br />

4� PRINT" J.W.JACKSON<br />

5� PRINT" POR<br />

6� PRINT" HOT coco<br />

7� PRINT" 1984<br />

8� GOSUB43�<br />

9� CLS:PRINT" BIT232 INPORMATION<br />

1�� PRINT:PRINT" EXEC BB :<br />

11� PRINT" MACHINE LANGUAGE CON<br />

VERSANT MOOE THAT WILL ENABLE YO<br />

U TO CHAT WITH SOMEONE ELSE PROM<br />

YOUR KEYBOARO VIA THE RS�232. Y<br />

OU MAY EXIT THIS MODE BY PRESSIN<br />

G .<br />

12� PRINT" EXEC BB+3:<br />

13� PRINT" SET PAR ROUTINE - DIS<br />

PLAY/SET THE RS-232 PARAMETERS S<br />

UCH AS BAUD RATE, PARITY,ETC.<br />

14� GOSUB43�:CLS<br />

15� PRINT" EXEC BB+6:<br />

16� PRINT" LININ ROUTINE - GETS<br />

A LINE PROM THE RS-232 INPUT IN<br />

TO RX$. YOU MUST HAVE DEPINED RX<br />

$ IN YOUR BASIC PROGRAM. THE INP<br />

UT IS TERMINATED BY A CARRIAGE R<br />

ETURN OR 256 BYTES RECEIVED.<br />

17� PRINT" EXEC B8+9:<br />

18� PRINT" LINOUT ROUTINE - OUT<br />

PUTS A LINE TO THE RS-232 OUTPUT<br />

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!