: In article <1992Dec4.004641.27595@murdoch.acc.Virginia.EDU>, sam2y@uvacs.cs.Virginia.EDU (Steven A. Moyer) writes...
: >I have a question for those of you who have put CP/M onto a homebrewed
: >machine. Unfortunately, our university library has only 1 text on
: >CP/M and it is pretty much fluff with only hints at the insides so I
: >haven't been able to work this out for myself.
: >
: I would recommend "The Programmer's CP/M Handbook" by Thom Hogan,
: if you can scare up a copy somewhere. I doubt seriously if it's
: been published recently, but it really deals with your exact
: problem. As an aside, Thom Hogan was the guy who wrote the BIOS
: for the Osborne machines.
: Have fun.
That's the book I would chose, but my copy is by Andy Johnson Laird.
Thom Hogan wrote the other essential CP/M book, the Osborne CP/M User
Guide. Both were published by Osborne/McGraw-Hill.
Will
cwr@crash.cts.com
------------------------------
Date: 4 Dec 92 21:53:58 GMT
From: cis.ohio-state.edu!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!news.unomaha.edu!cwis.unomaha.edu!haworth@ucbvax.Berkeley.EDU (Dwight A. Haworth)
Subject: Re: WordStar to Macintosh converter needed
From: agate!usenet.ins.cwru.edu!magnus.acs.ohio-state.edu!zaphod.mps.ohio-state.edu!usc!sol.ctr.columbia.edu!ira.uka.de!gmd.de!jvnc.net!erenj.com!bdboyle@ucbvax.Berkeley.EDU (Bryan D. Boyle)
Subject: Need info: TRS-80/II and S-100 Turbodos
Message-ID: <1992Dec17.134822.988@erenj.com>
Being an old afficianado of TurboDOS, I would like to know if anyone
on the net has a legal copy that they would like to sell. I know that
it was configged for a wide range of systems from California Computer to
IMS, as well as the TRS80/II. Now, I realize that we are talking about
a system that is over 10 years old, but I do have a use for the mod
II, and do have both a ccs s-100 system (64K, 2 rs232 i/o, 1 centronics
parallel, DG D410 terminal and quantum 40mb fixed disk) and am in the
process of obtaining another s100 system for hacking around...any info
or direction would be greatly appreciated.
--
Bryan D. Boyle |Exxon doesn't pay me to voice their opinions...
Senior Engineer |Semper ubi sub ubi.
bdboyle@erenj.com |On a clear day, you can see forever on the Net...
------------------------------
Date: Wed, 16 Dec 1992 20:50 MST
From: "Frank J. Wancho" <WANCHO@WSMR-SIMTEL20.ARMY.MIL>
>Several attempts to reply directly to "reynaert@arizona.edu" have failed with
>a "user unknown" message from the host, so I will post my response here.
>>> I have benn having problems with my communications when I use an external
>>> modem at 2400 BPS, Some characters are lost while the comunication is
>>> going on. This only happens when there is output to my adm3a screen.
>>> Curiously, this doesn't happen at 1200 BPS or less. Also I have down
>>> loaded files at 2400 BPS and no data has been lost...
> This is a very well known problem with Kaypro computers. It is the
>result of a poor design of the video display. When a new line must be
>created at the bottom of the screen and the existing lines have to be
>scrolled up, the system takes so long that incoming characters are lost. I
>don't use a Kaypro myself, but many friends do. There is a file that
>implements a correction to this (I can't remember exactly what it does or
>how it does it). A common work around is to clear the screen every time it
>fills up and to start again from the top. If you don't get more specific
>advice from others who reply to you, get back to me and I will try to dig up
>that file for you. It is posted on my BBS system, which is sponsored by the
>former Kaypro User Group of the Boston Computer Society (now broadened to
>include all CP/M and MS-DOS computers). In case you are a BBSer, its phone
>number is 617-965-7046. This reaches first a v.32bis modem and, if that one
>is busy, a USR Courier HST on line 2 (alternatively reachable directly at
>617-965-7785).
>-- Jay Sage
Jay, this is not totally correct. I ran a USRobotics HST/V32/V42bis on my
Kaypro 10 for several years, at 19200 baud, without problem. I DID have to
rewrite the overlay for BYE and Ybbat to do this though, as they were incorrectly handling the Z80-SIO fifo. The SIO has a 4 character incomming FIFO, and it
will allow you to do 19,200 (or maybe even 38400) without a hitch if you
implement a queue, and every time you go to get a character off the SIO, insteadget the chars off the SIO, and put them in the queue, and then return the top
char off the queue. I am going to include ybh-kay1.asm which implements this
at the end of this message.
Please note, most modem overlays such as bye, mex and others did not implement
this. Hope you can use it and hope it helps. BTW, the queue I used is 256
chars, if you need a bigger one (long interrupts blocking the sio for example
during a disk read) then you will need to enlarge it.