home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / simtel / archives / cpm / 8303-1.txt < prev    next >
Encoding:
Text File  |  1993-02-13  |  195.8 KB  |  4,569 lines

  1.  1-Mar-83 07:39:13,671;000000000000
  2. Date:     1 Mar 83 7:39:13 EST (Tue)
  3. From:     George Keller (IBD) <keller@brl.arpa>
  4. To:       info-cpm@brl.arpa
  5. Subject:  Error-checking
  6. Received: From Brl.ARPA via smtptcp;  1 Mar 83 7:47 EST
  7. Received: From brl-gateway.ARPA via smtptcp;  1 Mar 83 7:49 EST
  8.  
  9. We are using our micros as intelligent terminals to both shared minis and
  10. to a large host.  One of our number is having difficulty with noise in
  11. his communications with the host.  I would like to correspond with 
  12. anyone who has experience with - has written - error-checking commo
  13. routines.  All we have to work with is an echo from the host, but that
  14. ought to provide enough power to do the job.  
  15.  1-Mar-83 15:03:00,697;000000000000
  16. Return-Path: <hutchinson.UMass-ECE.UMASS-ECE@UDel-Relay>
  17. Date:     1 Mar 83 18:03-EDT (Tue)
  18. From: Charles Hutchinson <hutchinson.UMass-ECE@udel-relay.arpa>
  19. Subject:  Rainbow 100
  20. To: INFO-CPM@umass-ece
  21. Cc: HUTCHINSON.UMASS-ECE@udel-relay.arpa
  22. Via:  UMASS-ECE; 1 Mar 83 23:14-EST
  23. Received: From Mit-Mc.ARPA via smtptcp;  1 Mar 83 23:33 EST
  24. Received: From Brl.ARPA via smtptcp;  2 Mar 83 2:58 EST
  25. Received: From brl-gateway.ARPA via smtptcp;  2 Mar 83 6:15 EST
  26.  
  27. Hi!
  28.     I'm looking for anyone who uses/owns a Rainbow 100, to discuss
  29. the machine, software, etc.  I especially want to get a MODEM for the
  30. Rainbow.
  31.  
  32.     Can anyone help??
  33.  
  34.  
  35.             John
  36.     
  37.     ( HUTCHINSON.UMASS-ECE@UDEL-RELAY )
  38.  2-Mar-83 00:35:00,1883;000000000000
  39. Date: 2 March 1983 00:35 EST
  40. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  41. Subject:  FTPing COM files from the MIT-MC CPM directory
  42. To: Info-Cpm@brl.arpa
  43. Received: From Mit-Mc.ARPA via smtptcp;  2 Mar 83 0:36 EST
  44. Received: From Brl.ARPA via smtptcp;  2 Mar 83 2:39 EST
  45. Received: From brl-gateway.ARPA via smtptcp;  2 Mar 83 6:13 EST
  46.  
  47. Date: 2 March 1983 00:17 EST
  48. From: Gail Zacharias <GZ>
  49. To:   bridger at RAND-UNIX
  50. cc:   FJW, W8SDZ
  51. Re:   [W8SDZ: [bridger: squeezing MC CPM files-HEXIFY]]
  52.  
  53. The HEXIFY source is on MC in AR4:GZ;HEXIFY MIDAS.  I doubt it will
  54. do you any good.
  55.  
  56. COM files are stored on ITS as four 8-bit bytes per PDP-10 word, left
  57. justified.  The first word is a file-type identifier and it is 446353300000
  58. octal.  This particular packing of 8 bit bytes into pdp-10 words is pretty
  59. standard, so if your FTP has a binary mode, it will probably do the right
  60. thing, i.e. give you the correct sequence of 8-bit bytes coming out of the FTP.
  61. If that is the case, the first 4 bytes should be: 223, 072, 330, 0 (octal).
  62. These come from the id word above and are not part of the com file proper, i.e.
  63. should be discarded before downloading to a CP/M system.
  64.  
  65. Now, if you don't have binary mode in your FTP, or if the binary mode is such
  66. that you get something other 223,072,330,0 as first four bytes when FTPing COM
  67. files (meaning that the server is using some other byte packing), it might
  68. still be possible to FTP the files and reconstruct the original from that.
  69. (The only problem might be CRLF vs. LF transformations in ascii mode).  All you
  70. need to do figure out how the server unpacks the bytes and then "undo" it.  I'd
  71. be happy to help out if you have trouble figuring this out.  Just let me know
  72. what the first few bytes are when you FTP a com file.  But before you go
  73. writing any code, make sure there is no way to make FTP win directly.
  74.  2-Mar-83 00:38:00,1370;000000000000
  75. Date: 2 March 1983 00:38 EST
  76. From: Richard P. Wilkes <RICK@mit-mc.arpa>
  77. Subject:  Error-checking
  78. To: keller@brl.arpa
  79. cc: Info-CPM@brl.arpa
  80. In-reply-to: The message of 1 Mar 83 7:39:13 EST (Tue) from George Keller (IBD) <keller at brl.arpa>
  81. Received: From Mit-Mc.ARPA via smtptcp;  2 Mar 83 0:39 EST
  82. Received: From Brl.ARPA via smtptcp;  2 Mar 83 2:39 EST
  83. Received: From brl-gateway.ARPA via smtptcp;  2 Mar 83 6:13 EST
  84.  
  85. There is a problem checking just the echo from the host. Many
  86. times, the noise may only cause incorrect characters on your
  87. receive line while the host received and retransmitted
  88. correctly. Some attempts I've seen have tried to "fix" xmit
  89. errors using deletes to kill the bad chars and then
  90. retransmitting. But, if line noise was the problem, you may be
  91. deleting correct text.  One option is to issue a line delete
  92. and resend the entire line.  Of course, this doesn't help if a
  93. character was garbled into a line terminator (<CR> on most
  94. systems).
  95.  
  96. All in all, the problem is PRETTY MESSY.  Sometimes you can
  97. tailor to the application.  But, without some type of
  98. checksumming or CRC, you are still going to get errors thru.
  99. And, when using something like a text editor, the protocol has
  100. to be careful when "correcting" to take into account screen
  101. reformatting and the like.  All in all, not a pleasant task.
  102.  
  103. Good luck. -r
  104.  2-Mar-83 00:50:00,1075;000000000000
  105. Date: 2 March 1983 00:50 EST
  106. From: Eric J. Swenson <EJS@mit-mc.arpa>
  107. Subject:  Small-C
  108. To: info-cpm@brl.arpa, info-micro@brl.arpa
  109. Received: From Mit-Mc.ARPA via smtptcp;  2 Mar 83 0:51 EST
  110. Received: From Brl.ARPA via smtptcp;  2 Mar 83 2:39 EST
  111. Received: From brl-gateway.ARPA via smtptcp;  2 Mar 83 6:14 EST
  112.  
  113. Does anyone know where I can find a HEX or COM version of either Small-C
  114. V1.0 or Small-C V2.0 on the ARPANET for CP/M.  The source for V1.0 is on
  115. MIT-AI and the source for V2.0 is on MIT-MC, but neither is any help since
  116. I do not have any version of C to compile the source with.  Alternatively,
  117. is there an ASM source for Small-C V1.0 that I can get to bootstrap myselft
  118. up to V2.0?
  119.  
  120. Additionally, where can I find source and object for Small-VM, Small-SHELL,
  121. and a sample STDIO.ASM?  Any pointers would be appreciated.  For those of
  122. you on usenet receiving this, if you cannot send to an ARPANET host, Keith
  123. Peterson has volunteered his brl-bmd usenet address for replies.  It is 
  124.  
  125. .....!duke!unc!brl-bmd!w8sdz
  126.  
  127. Thanks in advance.  -- Eric
  128.  2-Mar-83 08:04:56,1717;000000000000
  129. Return-Path: <Keaton.nmt.NMT@Rand-Relay>
  130. Date:     2 Mar 83 8:04:56-MST (Wed)
  131. From: David Keaton <keaton.nmt@rand-relay.arpa>
  132. Subject:  Error checking
  133. To: Info-CPM.BRL@rand-relay.arpa
  134. Via:  NMT; 3 Mar 83 2:18-PDT
  135. Received: From Rand-Relay.ARPA via smtptcp;  3 Mar 83 5:35 EST
  136. Received: From Brl.ARPA via smtptcp;  3 Mar 83 5:39 EST
  137. Received: From brl-gateway.ARPA via smtptcp;  3 Mar 83 5:47 EST
  138.  
  139.      I have written some software (Z80 assembly code) that checks what comes
  140. back from the host to make sure it's valid.  I'll be glad to send it to anyone
  141. who wants it -- it's pretty short (or I'll post it to Info-CPM if there's
  142. enough interest).  It may take a while though because I have to wait for my
  143. computer to come back from the factory -- it's an Osborne-1 getting a double
  144. density upgrade.
  145.      I do have an observation though:  I seem to get fewer errors when I turn
  146. off echo at the host and use checksums.  I'm not sure whether this is because
  147. of some kind of feedback in the phone lines (anybody know if that's possible?)
  148. or just that my micro is slow in receiving characters when it's trying to
  149. send them at the same time.  My gut feeling says it's the latter.
  150.      I have been playing around with calling bigger machines with my micro
  151. for four to five months now and have NEVER had problems with the bit rate
  152. affecting my error count (i.e. 1200bps is as reliable as 300) and this includes
  153. long-distance phone lines.  Before I got my modem, I heard people complain
  154. about 1200bps being unreliable all the time.  Am I just lucky or do the rest
  155. of you have the same experiences?
  156.  
  157.                                 David Keaton
  158.                                 keaton.nmt@Rand-Relay
  159.  2-Mar-83 12:53:00,975;000000000000
  160. Return-Path: <hutchinson.UMass-ECE.UMASS-ECE@UDel-Relay>
  161. Date:     2 Mar 83 15:53-EDT (Wed)
  162. From: Charles Hutchinson <hutchinson.UMass-ECE@udel-relay.arpa>
  163. Subject:  Kaypro II / Continuum
  164. To: INFO-CPM@umass-ece
  165. Cc: HUTCHINSON.UMASS-ECE@udel-relay.arpa
  166. Via:  UMASS-ECE; 2 Mar 83 20:51-EST
  167. Received: From Mit-Mc.ARPA via smtptcp;  4 Mar 83 4:20 EST
  168. Received: From Brl.ARPA via smtptcp;  10 Mar 83 6:05 EST
  169. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 6:11 EST
  170.  
  171. Hi!
  172.     I'm looking for someone with a Kaypro II, as I'm considering
  173. purchasing one in the near future.  I may purchase it from a California
  174. company, called Continuum, which sells the Kaypro II with a 10MB hard disk
  175. for $2800.  Has anyone had any experience with this company?  That offer
  176. seems too good to be true...
  177.  
  178.     To those with Kaypro's, what do you think of them?  Any and all
  179. views welcomed.....
  180.  
  181.  
  182.                 Thatnks,
  183.                     John Hutchinson
  184.  
  185.             ( HUTCHINSON.UMASS-ECE @ UDEL-RELAY )
  186.  2-Mar-83 21:49:43,784;000000000000
  187. Return-Path: <Morgan.UCI.UCI@Rand-Relay>
  188. Date: 02 Mar 83 21:49:43 PST (Wed)
  189. From: Tim Morgan <morgan.uci@rand-relay.arpa>
  190. Subject: C compilers
  191. To: info-cpm@uci
  192. Via:  UCI; 2 Mar 83 23:08-PDT
  193. Received: From Mit-Mc.ARPA via smtptcp;  3 Mar 83 2:28 EST
  194. Received: From Brl.ARPA via smtptcp;  3 Mar 83 3:19 EST
  195. Received: From brl-gateway.ARPA via smtptcp;  3 Mar 83 3:31 EST
  196.  
  197. Does anyone have or know of a CP/M (Z80) C compiler which is capable
  198. of compiling all or almost all of standard C?  Particularly, I am
  199. interested in being able to compile the output from yacc.  Please
  200. reply directly to me via the net.
  201.  
  202.                 Thanks ahead of time,
  203.                 Tim Morgan
  204.                 MORGAN.UCI@RAND-RELAY (ARPAnet)
  205.                 MORGAN@UCI            (CSnet)
  206.  2-Mar-83 21:59:32,922;000000000000
  207. Date:     2 Mar 83 21:59:32 EST (Wed)
  208. From:     Rick Conn <rconn@brl.arpa>
  209. To:       info-cpm@brl.arpa
  210. Subject:  ZCPR2 COM Files
  211. Received: From Brl.ARPA via smtptcp;  2 Mar 83 22:04 EST
  212. Received: From brl-gateway.ARPA via smtptcp;  2 Mar 83 22:15 EST
  213.  
  214.         I just did a CRC check on all the COM files for ZCPR2  in
  215. AR82:FJW.   They are all current versions.  For those of you with
  216. the Installation Manual, you will find that the CRCs match as ad-
  217. vertised  in  Appendix  A to all files except MKDIR.  The CRC for
  218. MKDIR is C27F, and it is different because a glitch was found  in
  219. SYSLIB's  SORT  routine  and  I corrected it.  MKDIR was the only
  220. ZCPR2 program which I found to use SORT, so I simply  reassembled
  221. it.  Source to MKDIR is the same as before, and only the COM file
  222. is different.
  223.  
  224.         AR19:CPM now contains the current version of SYSLIB,  viz
  225. 2.5.  CRCs match.
  226.  
  227.                 Rick
  228.  2-Mar-83 22:25:47,460;000000000000
  229. Date:     2 Mar 83 22:25:47 EST (Wed)
  230. From:     Rick Conn <rconn@brl.arpa>
  231. To:       info-cpm@brl.arpa
  232. Subject:  ZCPR2's LDIRZ
  233. Received: From Brl.ARPA via smtptcp;  2 Mar 83 22:31 EST
  234. Received: From brl-gateway.ARPA via smtptcp;  2 Mar 83 22:37 EST
  235.  
  236.     I missed one earlier.  Thanks to Charlie Strom for pointing it
  237. out.  LDIRZ also used SORT in SYSLIB.  I have reassembled it and uploaded
  238. the new LDIRZ COM to AR82:FJW.  CRCs match at B225.
  239.  
  240.         Rick
  241.  3-Mar-83 00:33:00,911;000000000000
  242. Date: 3 March 1983 00:33 EST
  243. From: Gail Zacharias <GZ@mit-mc.arpa>
  244. Subject:  New ITS modem program
  245. To: info-cpm@brl.arpa
  246. cc: BUG-MMODEM@mit-mc.arpa
  247. Received: From Mit-Mc.ARPA via smtptcp;  3 Mar 83 0:35 EST
  248. Received: From Brl.ARPA via smtptcp;  3 Mar 83 0:56 EST
  249. Received: From brl-gateway.ARPA via smtptcp;  3 Mar 83 1:16 EST
  250.  
  251. There is a new modem program on MC, called :MMODEM.  Do
  252.      :MMODEM ?
  253. for usage details.  This program imposes a much smaller load on the system than
  254. LMODEM.  However, MMODEM doesn't currently provide the special 7-bit mode that
  255. LMODEM has.  If there is sufficient demand, I can put it in.
  256.  
  257. Since this is of interest to ITS users only, future annoucements regarding
  258. MMODEM will not be sent to INFO-CPM.  If you use this program, let me know and
  259. I'll put you on INFO-MMODEM where such announcements will go.
  260.  
  261. Questions, bugs, feature requests etc. to BUG-MMODEM@MC.
  262.  3-Mar-83 01:09:00,584;000000000000
  263. Date:  3 Mar 1983 0009-PST
  264. Subject: Re: New files on MC
  265. From: Tom Carnahan <TCARNAHAN@usc-isie.arpa>
  266. To: Charlie Strom <CSTROM@mit-mc.arpa>, INFO-CPM@brl.arpa
  267. POSTAL-ADDRESS: Tom Carnahan, SMC 1819, NPS, MONTEREY,CA 93940
  268. Phone: (Home) 408-372-7480 (NPS office) 408-646-2174 AV 878-2174
  269. In-Reply-To: Your message of 2 March 1983 21:42 EST
  270. Received: From Usc-Isie.ARPA via smtptcp;  3 Mar 83 3:09 EST
  271. Received: From Brl.ARPA via smtptcp;  3 Mar 83 3:20 EST
  272. Received: From brl-gateway.ARPA via smtptcp;  3 Mar 83 3:32 EST
  273.  
  274. HOW DO I ACESS CPM;MLOAD ASM   FROM ISIE?
  275. -------
  276.  3-Mar-83 05:26:00,803;000000000000
  277. Date: 3 March 1983 05:26 EST
  278. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  279. Subject: New RCPM from Eddie Currie
  280. To: INFO-CPM@mit-mc.arpa
  281. Received: From Mit-Mc.ARPA via smtptcp;  3 Mar 83 5:26 EST
  282. Received: From Brl.ARPA via smtptcp;  3 Mar 83 5:27 EST
  283. Received: From brl-gateway.ARPA via smtptcp;  3 Mar 83 5:36 EST
  284.  
  285.  
  286. Msg 303 is 10 line(s) on 02/22/83 from EDDIE CURRIE
  287. to ALL about NEW RBBS IN NY
  288.  
  289. ATTENTION ALL RBBS FANS !!!!!!!!!!!!
  290. There is now a new RBBS operating in
  291. the New York Area. PMMI baud rates supported
  292. 2.4 Megabytes of online storage and files.
  293. Call 212-535-3406. Current hours are
  294. from 7:00PM-12:00PM seven days a week.
  295. Currently on line is the latest CPMUG volume
  296. # 91. Please leave messages regarding
  297. any problems/suggestions.
  298. Regards to all ............ Eddie Currie
  299.  3-Mar-83 09:18:14,593;000000000000
  300. Date: 3-Mar-83 08:18:14-PST (Thu)
  301. From: unicom!vandal@lbl-csam.arpa
  302. Subject: Addition to info-cpm mailing list
  303. Return-Path: <unicom!vandal@LBL-CSAM.ARPA>
  304. Message-Id: <8302031618.20619@LBL-CSAM.ARPA>
  305. Received: by LBL-CSAM.ARPA (3.284 [1/5/83])
  306.     id AA20619; 3-Mar-83 08:18:14-PST (Thu)
  307. To: lbl-csam!info-cpm@mit-mc.arpa
  308. Received: From Mit-Mc.ARPA via smtptcp;  4 Mar 83 3:29 EST
  309. Received: From Brl.ARPA via smtptcp;  4 Mar 83 4:07 EST
  310. Received: From brl-gateway.ARPA via smtptcp;  4 Mar 83 4:46 EST
  311.  
  312.  
  313. Please add:        unicom!vandal@lbl-csam
  314.  
  315.             Thanks, Jim C.    unicom!vandal@lbl-csam
  316.  3-Mar-83 12:03:40,386;000000000000
  317. Date:     3 Mar 83 12:03:40 EST (Thu)
  318. From:     Rick Conn <rconn@brl.arpa>
  319. To:       info-cpm@brl.arpa
  320. Subject:  DU2
  321. Received: From Brl.ARPA via smtptcp;  3 Mar 83 12:11 EST
  322. Received: From brl-gateway.ARPA via smtptcp;  3 Mar 83 13:06 EST
  323.  
  324.     I fixed a bug in DU2 (very minor) the other day and forgot
  325. to upgrade the copy on MC.  DU2 is now upgraded.  New CRC is E732.
  326.  
  327.         Rick
  328.  5-Mar-83 08:13:10,764;000000000000
  329. Date:     5 Mar 83 8:13:10 EST (Sat)
  330. From:     Rick Conn <rconn@brl.arpa>
  331. To:       info-cpm@brl.arpa
  332. Subject:  ZCPR2 Mod 0.3
  333. Received: From Brl.ARPA via smtptcp;  5 Mar 83 8:17 EST
  334. Received: From brl-gateway.ARPA via smtptcp;  5 Mar 83 8:29 EST
  335.  
  336.         ZCPR2 Mod 0.3 is now on MC in AR80:FJW.  This mod removes
  337. an  "annoyance"  in  which ZCPR2 thrashes with the disk in a rare
  338. case.  ZCPR2 slowed down because of this but did not generate  an
  339. error.  CRCs check.
  340.  
  341.         In the same AR is the file Z2SYS MOD, which describes the
  342. mods to the original distribution and why the mods were made.  It
  343. is a short text file.  The file covers ZCPR2 and SYSLIB,  and  it
  344. establishes a new baseline at ZCPR2 Mod 0.3 and SYSLIB 2.5.
  345.  
  346.                 Rick
  347.  5-Mar-83 08:16:00,1310;000000000000
  348. Date: 5 March 1983 08:16 EST
  349. From: Charlie Strom <CSTROM@mit-mc.arpa>
  350. Subject: ZCPR2 Package
  351. To: INFO-CPM@brl.arpa
  352. Received: From Mit-Mc.ARPA via smtptcp;  5 Mar 83 8:16 EST
  353. Received: From Brl.ARPA via smtptcp;  5 Mar 83 8:17 EST
  354. Received: From brl-gateway.ARPA via smtptcp;  5 Mar 83 8:29 EST
  355.  
  356. I thought it might be useful to advise the net of the location of the
  357. on-line file storage of Richard Conn's ZCPR2 replacement CCP and its
  358. associated documentation and utilities on MC:
  359.  
  360.     AR80:FJW - This archive contains ZCPR2 proper as well as the
  361. header file required for assembly and some of the documentation.
  362.  
  363.     AR81:FJW - The .HLP (help) files for ZCPR2, to be used in
  364. conjunction with HELP.COM.
  365.  
  366.     AR82:FJW - ZCPR2 utilities. The object file only is provided
  367. in most cases due to storage capacity limitations. Source to these
  368. files will soon be available from SIG/M.
  369.  
  370.     AR83:FJW - ZCPR2 documentation. The balance of documentation not
  371. present in AR80 is in this archive. There still reamains a file or two
  372. which I will be uploading shortly. Note that most of the documentation
  373. has been uploaded in squeezed form due to its size and should be downloaded
  374. or FTP'd as a binary file and later unsqueezed using Richard Greenlaw's
  375. USQ program which is available in the CPM directory on MC.
  376.  5-Mar-83 08:24:31,1376;000000000000
  377. Date:     5 Mar 83 8:24:31 EST (Sat)
  378. From:     Rick Conn <rconn@brl.arpa>
  379. To:       info-cpm@brl.arpa
  380. Subject:  ZCPR2 and SYSLIB Manuals
  381. Received: From Brl.ARPA via smtptcp;  5 Mar 83 8:28 EST
  382. Received: From brl-gateway.ARPA via smtptcp;  5 Mar 83 8:30 EST
  383.  
  384.  
  385.         I had a discussion with the publications chairman of  the
  386. NY Amateur Computer Group last night at my talk, and I discovered
  387. that this group is planning to print the ZCPR2 and  SYSLIB  docu-
  388. mentation.   I  am sending them a complete set today to make sure
  389. they are up to date.
  390.  
  391.         They expect to have a run of 2000 copies completed by the
  392. end  of  the  month, and they intend to begin selling them at the
  393. Trenton Computer Festival (15-17 Apr).  The ZCPR2 and SYSLIB  do-
  394. cumentation  is  expected to reside in two volumes of an n-volume
  395. set of documentation on public domain software they are creating.
  396. The cost per volume is expected to be around $8.
  397.  
  398.         The NY Amateur Computer Group is a not-for-profit organi-
  399. zation, and any profits from this sale are to go into funding fu-
  400. ture club activities.
  401.  
  402.         I will drop a message to the net  after  the  sales  have
  403. started.    This   message   will  contain  addresses  and  exact
  404. cost/volume number information for those wishing to send  to  the
  405. group for the manuals (or whole manual set).
  406.  
  407.                 Rick
  408.  5-Mar-83 20:21:51,5087;000000000000
  409. Date:     5 Mar 83 20:21:51 EST (Sat)
  410. From:     Keith Petersen <w8sdz@brl.arpa>
  411. To:       Info-Cpm@brl.arpa
  412. Subject:  New MODEM7 available from MC
  413. Received: From Brl.ARPA via smtptcp;  5 Mar 83 20:32 EST
  414. Received: From brl-gateway.ARPA via smtptcp;  5 Mar 83 20:34 EST
  415.  
  416. A new version of the MODEM7 series, MDM705, is now available on MIT-MC.
  417. This version has several different user overlay files to make customization
  418. easy.  You don't really need the MDM705.ASM file (which is now 130k long)
  419. unless you plan to modify or improve the program.  All you need is
  420. MDM705.COM (or HEX if you can't FTP COM files from MC), and the appropriate
  421. user overlay file.  The following are excerpts from Irv Hoff's information
  422. on this new version.
  423.  
  424. Bug reports to INFO-MODEM7@MIT-MC, please.  This is a special mailing list
  425. for maintainers of the MODEM7 series.
  426.  
  427. ---from MDM705.MSG---
  428.  
  429.      MDM705 is now available on this system.  After the
  430. MODEM7xx program became MODEM799, a decision was made to
  431. name the next version MDM700.  This also allows it to be
  432. placed on the COMPUSERVE system which limits all file
  433. names to 6 characters including any revision numbers.
  434.      While catering to S-100 systems using the plug-in
  435. PMMI auto-answer, auto-dial modem, it works great on most
  436. other systems as well.  (My own equipment uses an external 
  437. Bell 212A modem with push button manual dialing.)
  438.      This is likely the most sophisticated modem program
  439. available for CP/M users.  An instruction guide is in-
  440. cluded in the group of programs, called MDM705.DOC.
  441.      Look at the short file called MDM705.INF for an
  442. explanation of the various programs in the family.  It
  443. will tell which may be most useful in adapting to your
  444. equipment.  It also gives typical values for many units.
  445.  
  446.                               - Irv Hoff    22 FEB 83
  447.  
  448. ---from MDM705.INF---
  449.  
  450. TOPIC :  MDM705 MODEM PROGRAM INSTALLATION INFORMATION
  451. FROM  :  IRVIN M. HOFF
  452. DATE  :  03/03/83
  453.  
  454.  
  455.        This program is based on one originally written by Ward Christ-
  456. ensen in Sept. 1977.  It has since undergone a considerable number of
  457. changes.  Two of the latest were (1) printer control while in the "T"
  458. (Terminal) mode and (2) combining the macro library into the program to
  459. eliminate extra files -- also allowing assembly with ASM as well as MAC
  460. or other popular assemblers.
  461.  
  462. NOTE:  Special configuration files are being added for specific types of
  463.        computers.  Several are available as shown below.  Others will be
  464.        provided for popular computers using external modems.  This file
  465.        will be updated accordingly.  (The MDM705CF.ASM general configure
  466.        file also contains information regarding the Heath/Zenith H-89.)
  467.  
  468.        To adapt this version to your equipment, you will want to get
  469. some of the following programs:
  470.  
  471.         Program name    Squeezed Name          Purpose
  472.  
  473.         MDM705.ASM      MDM705.AQM        (source code file)
  474.         MDM705.COM      MDM705.OBJ        (object code file)
  475.     MDM705.DOC      MDM705.DQC        (how-to-use file)
  476.         MDM705.INF      MDM705.IQF        (information file)
  477.         MDM705.SET      MDM705.SQT        (how to set file)
  478.         MDM705AP.ASM    MDM705AP.AQM      (Apple II overlay file)
  479.         MDM705CF.ASM    MDM705CF.AQM      (general overlay file)
  480.         MDM705DP.ASM    MDM705DP.AQM      (Datapoint 1560 overlay)    
  481.         MDM705HZ.ASM    MDM705HZ.AQM      (Heath/Zenith Z-100 file)
  482.         MDM705KP.ASM    MDM705KP.AQM      (KayPro overlay file)
  483.         MDM705NM.ASM    MDM705NM.AQM      (Phone number overlay)
  484.         MDM705OS.ASM    MDM705OS.AQM      (Osborne overlay file)
  485.         MDM705XE.ASM    MDM705XE.AQM      (Xerox 820 overlay file)
  486.  
  487.         NOTE:  The MDM705CF overlay file has additional information
  488.                permitting easy adaptation to the Heath/Zenith units
  489.                using the 8250 I/O.
  490.  
  491. MDM705 is designed to work immediately for PMMI users with no changes.
  492. (Some preferences might be different from those preset, however.)
  493.  
  494.         When ready to use the program, type 'H' (for 'HELP'), hit RET
  495. and it will display helpful information on the commands.  There are so
  496. many commands there are several pages.  You can abort the display with
  497. a CTL-C.  (One of the most useful features being CTL-P to toggle your
  498. printer on/off) 
  499.  
  500.         The program has received numerous worthwhile optional features
  501. in the past several months.
  502.  
  503. ---end of excerpts---
  504.  
  505. The files are available from MIT-MC in the AR61:CPM; directory:
  506.  
  507. MDM705 APASM  2  03/03/83 04:36:25
  508. MDM705 ASM    27  03/01/83 03:42:33
  509. MDM705 CFGASM 3  03/01/83 04:43:54
  510. MDM705 COM    5  03/01/83 03:55:10
  511. MDM705 DOC    7  03/01/83 02:43:04
  512. MDM705 DPASM  2  03/03/83 05:06:55
  513. MDM705 HZASM  2  03/04/83 09:07:29
  514. MDM705 INF    1  03/04/83 08:45:05
  515. MDM705 MSG    1  03/02/83 06:45:49
  516. MDM705 NMASM  1  03/02/83 06:32:57
  517. MDM705 OSASM  2  03/02/83 06:36:12
  518. MDM705 OSINF  1  03/02/83 06:46:58
  519. MDM705 SET    2  03/01/83 03:49:14
  520. MDM705 XEASM  2  03/04/83 08:55:00
  521.  
  522. --Keith <w8sdz@brl>
  523.  5-Mar-83 20:35:16,1327;000000000000
  524. Date:     5 Mar 83 20:35:16 EST (Sat)
  525. From:     Keith Petersen <w8sdz@brl.arpa>
  526. To:       Info-Cpm@brl.arpa
  527. Subject:  [Eric J. Swenson:  Small C]
  528. Received: From Brl.ARPA via smtptcp;  5 Mar 83 20:44 EST
  529. Received: From brl-gateway.ARPA via smtptcp;  5 Mar 83 20:45 EST
  530.  
  531. Can anyone on the list help us with this?  We have the V2.0 source
  532. on-line at MIT-MC, but as Eric says, that's not enough to get it
  533. going.
  534.  
  535. ----- Forwarded message # 1:
  536.  
  537. Date: 4 March 1983 13:16 EST
  538. From: Eric J. Swenson <EJS@Mit-Mc.ARPA>
  539. Subject:  Small C
  540. To: mhb5b!smb@Ucb-Arpa.ARPA
  541. cc: w8sdz@Brl-Bmd.ARPA
  542. In-reply-to: The message of 4 Mar 83 09:27:57 EST  (Fri) from mhb5b!smb at Berkeley (Steven M. Bellovin)
  543. Received: From Mit-Mc.ARPA via smtptcp;  4 Mar 83 17:06 EST
  544. Received: From brl-gateway.ARPA via smtptcp;  4 Mar 83 18:13 EST
  545.  
  546. Well, V2.0 was posted to net.sources in source form and without CP/M STDIO
  547. compatibility.  Without a C compiler, I can't use the source.  I need a COM
  548. file.  My only hope is either that somebody has a .COM file already for
  549. CP/M or that I can get my hands on a V1.0 CP/M .COM file.  Failing that, I
  550. can get a 8080 version of the soure to V1.0 and use it to generate a
  551. working V1.0 compiler, and then compile V2.0.  Thanks for youe help though.
  552. -- Eric
  553.  
  554.  
  555.  
  556. ----- End of forwarded messages
  557.  5-Mar-83 21:02:00,473;000000000000
  558. Date: 5 March 1983 21:02 EST
  559. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  560. Subject: MDM705.HEX
  561. To: Inf-Cpm@brl.arpa, Info-Cpm@brl.arpa
  562. Received: From Mit-Mc.ARPA via smtptcp;  5 Mar 83 21:01 EST
  563. Received: From Brl.ARPA via smtptcp;  5 Mar 83 21:07 EST
  564. Received: From brl-gateway.ARPA via smtptcp;  5 Mar 83 21:16 EST
  565.  
  566. When I announced MDM705 I neglected to list the location of MDM705.HEX
  567. for those who cannot FTP .COM files from MIT-MC.  It's in
  568. AR13:CPM;MDM705 HEX
  569.  5-Mar-83 21:28:34,1420;000000000000
  570. Date:     5 Mar 83 21:28:34 EST (Sat)
  571. From:     Rick Conn <rconn@brl.arpa>
  572. To:       info-cpm@brl.arpa
  573. Subject:  ZCPR2 and SYSLIB in SIG/M
  574. Received: From Brl.ARPA via smtptcp;  5 Mar 83 21:31 EST
  575. Received: From brl-gateway.ARPA via smtptcp;  5 Mar 83 21:37 EST
  576.  
  577.         ZCPR2 Mod 0.1 and SYSLIB 2.4 are now in SIG/M.   This  is
  578. complete  with all sources, HLP files, object files, and documen-
  579. tation as WordStar files.  This group constitutes Volumes  98  to
  580. 107  of  the SIG/M library.  I gave SIG/M a disk last night which
  581. (by itself) provides the files which upgrade this ZCPR2 and  SYS-
  582. LIB set to ZCPR2 Mod 0.3 and SYSLIB 2.5.  This will be coming out
  583. soon in SIG/M.
  584.  
  585.         They stated at the meeting  that  they  had  SYSLIB  2.3.
  586. They  actually  have  2.4.   The  confusion comes from the User's
  587. Guide referring to 2.3 and the User and Ref manual  referring  to
  588. 2.4.  The User's Guide didn't change from 2.3 to 2.4 to 2.5, so I
  589. just didn't change its header.  No doc  change  is  required  for
  590. 2.5,  so  2.4  of  the  User and Reference manual is good for 2.5
  591. also.  This is all explained in the Z2SYS-1.MOD file.
  592.  
  593.         If you ever have a question on what version of SYSLIB you
  594. have  is,  the following code segment (with its appropriate EXTs)
  595. tells you:
  596.  
  597.         CALL VERSION
  598.         CALL PHL4HC
  599.  
  600.         This will cause 0204 to be printed if version 2.4, etc.
  601.  
  602.  
  603.                 Rick
  604.  5-Mar-83 23:35:00,987;000000000000
  605. Date: 5 March 1983 23:35 EST
  606. From: Eric J. Swenson <EJS@mit-mc.arpa>
  607. Subject:  [Eric J. Swenson:  Small C]
  608. To: w8sdz@brl.arpa
  609. cc: info-cpm@brl.arpa, Danielson.PA@parc-maxc.arpa
  610. In-reply-to: The message of 5 Mar 83 20:35:16 EST (Sat) from Keith Petersen <w8sdz at brl.arpa>
  611. Received: From Mit-Mc.ARPA via smtptcp;  5 Mar 83 23:35 EST
  612. Received: From Brl.ARPA via smtptcp;  5 Mar 83 23:47 EST
  613. Received: From brl-gateway.ARPA via smtptcp;  5 Mar 83 23:54 EST
  614.  
  615. Courtesy of Danielson.PA@PARC-MAXC, I have Small-C V2.0 for CP/M on MIT-MC
  616. in the archive EJS;AR50:.  I will keep it up-to-date if I receive any fixes
  617. from Mr. Danielson.  In the archive are the *.MAC (your need M80 rather
  618. than ASM to assemble) files necessary to assemble Small-C V2.0 and the
  619. runtime libraries and i/o interface for CP/M.  Then i/o routines have
  620. references to ROM routines (rather than calling CONIN and CONOUT) so these
  621. will have to change.  I'll make these changes soon and upload onto MIT-MC.
  622.  6-Mar-83 05:39:00,920;000000000000
  623. Date: 6 March 1983 05:39 EST
  624. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  625. To: EJS@mit-mc.arpa
  626. cc: Info-Cpm@brl.arpa
  627. Received: From Mit-Mc.ARPA via smtptcp;  6 Mar 83 5:39 EST
  628. Received: From Brl.ARPA via smtptcp;  6 Mar 83 5:40 EST
  629. Received: From brl-gateway.ARPA via smtptcp;  6 Mar 83 5:42 EST
  630.  
  631. Thanks for getting the Small C version 2.0 CP/M files.
  632. I looked them over and found them all to have strings of
  633. control-Z's at the end.  This would probably not have
  634. caused problems with M80, but there were some "$" and
  635. "%" characters at the end too, probably a shell prompt
  636. from a Unix system.  I have cleaned up all the files and
  637. split them into two archives (because they were so large
  638. they exceeded the safe limit for on ARchive device on
  639. MC) and they're now available in the CPM directory.
  640. The archives are named AR76 V2CMAC and AR77 V2CMA2.
  641. If you update them, please use these as the sources.
  642. --Keith
  643.  6-Mar-83 09:40:39,960;000000000000
  644. Date:     6 Mar 83 9:40:39 EST (Sun)
  645. From:     Rick Conn <rconn@brl.arpa>
  646. To:       info-cpm@brl.arpa
  647. Subject:  Addresses
  648. Received: From Brl.ARPA via smtptcp;  6 Mar 83 9:42 EST
  649. Received: From brl-gateway.ARPA via smtptcp;  6 Mar 83 9:47 EST
  650.  
  651. The address of SIG/M is:
  652.  
  653.     SIG/M User Group
  654.     Amateur Computer Group of New Jersey, Inc
  655.     Box 97
  656.     Iselin, NJ  08830
  657.  
  658. The address of CP/M UG is:
  659.  
  660.     CPMUG
  661.     1651 Third Avenue
  662.     New York, NY  10028
  663.  
  664. The NJ Amateur Computer Group:
  665.  
  666.     Amateur Computer Group of New Jersey, Inc
  667.     PO Box 319
  668.     South Bound Brook, NJ  08880
  669.  
  670. The NY Amateur Computer Group:
  671.  
  672.     S-100, CP/M User Group
  673.     NY Amateur Computer Club
  674.     PO Box 106
  675.     Church Street Station
  676.     New York, NY  10018
  677.  
  678. Would everyone please make a note of this so I don't have to keep
  679. sending this information out everytime I mention one of the above?
  680. Even if you don't think you want the info now, you may want it in
  681. the future.
  682.  
  683. Thanks.
  684.  
  685.     Rick
  686.  6-Mar-83 11:57:00,716;000000000000
  687. Date: 6 March 1983 11:57 EST
  688. From: Eric J. Swenson <EJS@mit-mc.arpa>
  689. Subject:  Small-C for CP/M on MIT-MC
  690. To: W8SDZ@mit-mc.arpa
  691. cc: info-cpm@brl.arpa
  692. In-reply-to: The message of 6 Mar 1983 05:39 EST from Keith Petersen <W8SDZ>
  693. Received: From Mit-Mc.ARPA via smtptcp;  6 Mar 83 11:57 EST
  694. Received: From Brl.ARPA via smtptcp;  6 Mar 83 12:01 EST
  695. Received: From brl-gateway.ARPA via smtptcp;  6 Mar 83 12:09 EST
  696.  
  697. When I get a chance to download the code onto a micro, I'll modify the
  698. RUNTIME package to make it system independent and once checked out, I'll
  699. update the archives on MIT-MC (CPM;AR76: AND CPM;AR77:).  I'll also provide
  700. a .COM file and a new .HEX file.  Thanks for your cleanup of the files.
  701.  7-Mar-83 03:47:00,731;000000000000
  702. Date: 7 March 1983 03:47 EST
  703. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  704. Subject: MIT-MC CPM DIRLST updated
  705. To: INFO-CPM@mit-mc.arpa
  706. Received: From Mit-Mc.ARPA via smtptcp;  7 Mar 83 7:31 EST
  707. Received: From Brl.ARPA via smtptcp;  7 Mar 83 9:03 EST
  708. Received: From brl-gateway.ARPA via smtptcp;  7 Mar 83 9:06 EST
  709.  
  710. The file CPM;CPM DIRLST, which lists the main CPM directory and
  711. all the archive directories has been updated as of this morning.
  712. Anyone who cannot FTP, please send a note to INFO-CPM-REQUEST@BRL
  713. and a copy will be netmailed to you.  If you have already requested a
  714. copy of the one which was announced last week, you will get the new
  715. one.  The ZCPR2 archives are now available in the CPM directory.
  716. --Keith
  717.  7-Mar-83 13:38:00,1029;000000000000
  718. Received: from M.PCO.LISD.HIS by MIT-MULTICS.ARPA dial; 07-Mar-1983 15:41:07-est
  719. Date:  7 March 1983 13:38 mst
  720. From:  Mike Kubicar <Kubicar.Multics@m.pco.lisd.his (Mike Kubicar)>
  721. Subject:  Commodore 64 and cp/m
  722. To:  info-cpm@brl.arpa
  723. Received: From Mit-Multics.ARPA via smtptcp;  7 Mar 83 15:48 EST
  724. Received: From Brl.ARPA via smtptcp;  7 Mar 83 15:53 EST
  725. Received: From brl-gateway.ARPA via smtptcp;  7 Mar 83 17:23 EST
  726.  
  727. Has anyone had any experience with a commodore 64 running cp/m?  I
  728. noticed recently that there is a plug in cartridge that allows the base
  729. machine to run (one of) the most popular small computer operating
  730. system.  Is it compatible with everyone elses cp/m?  I also noticed no
  731. ads anywhere for programs in commodore cp/m format.  Does this mean that
  732. it accepts another popular format (apple perhaps) or that it's hard to
  733. find software for it.  Any info would be appreciated.
  734.  
  735.                               Mike Kubicar
  736.                               Kubicar.Multics%PCO-Multics@MIT-Multics
  737.  7-Mar-83 21:04:00,690;000000000000
  738. Date:  7 Mar 1983 2004-PST
  739. Subject: Re: MIT-MC CPM DIRLST updated
  740. From: Tom Carnahan <TCARNAHAN@usc-isie.arpa>
  741. To: Keith Petersen <W8SDZ@mit-mc.arpa>, INFO-CPM-REQUEST@brl.arpa, 
  742.     INFO-CPM@mit-mc.arpa
  743. POSTAL-ADDRESS: Tom Carnahan, SMC 1819, NPS, MONTEREY,CA 93940
  744. Phone: (Home) 408-372-7480 (NPS office) 408-646-2174 AV 878-2174
  745. In-Reply-To: Your message of 7 March 1983 03:47 EST
  746. Received: From Mit-Mc.ARPA via smtptcp;  7 Mar 83 23:58 EST
  747. Received: From Brl.ARPA via smtptcp;  8 Mar 83 0:02 EST
  748. Received: From brl-gateway.ARPA via smtptcp;  8 Mar 83 0:13 EST
  749.  
  750. I HAVEN'T HAD MUCH LUCK TRYING TO FTP THE CPM DIRECTORY.
  751. COULD YOU SEND ME A COPY?
  752.  
  753. THANKS,
  754.    TOM
  755. -------
  756.  8-Mar-83 07:46:00,1195;000000000000
  757. Return-Path: <hutchinson.UMass-ECE.UMASS-ECE@UDel-Relay>
  758. Date:     8 Mar 83 10:46-EDT (Tue)
  759. From: Charles Hutchinson <hutchinson.UMass-ECE@udel-relay.arpa>
  760. Subject:  Continuum and Apple CP/Mers
  761. To: INFO-CPM@umass-ece
  762. Cc: HUTCHINSON.UMASS-ECE@udel-relay.arpa
  763. Via:  UMASS-ECE; 8 Mar 83 19:22-EST
  764. Received: From Mit-Mc.ARPA via smtptcp;  8 Mar 83 23:23 EST
  765. Received: From Brl.ARPA via smtptcp;  10 Mar 83 6:05 EST
  766. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 6:12 EST
  767.  
  768. Hi!
  769.     Well, apparently my previous letter under the same subject never
  770. got distributed...
  771.     
  772.     Anyway, I am looking for anyone with experience with a California
  773. company called Continuum.  They placed an ad in the March Byte for a 
  774. Kaypro with a 10MB hard-disk, selling for $2795.  This seemed a little
  775. under-priced, so I would like to know if anyone has any info about them
  776. before I buy the Kaypro (If I ever do)
  777.  
  778.     Also, I'm looking for anyone who has used 'The CP/M Card' from
  779. Advanced Logic Systems.  This is a z-80 card for the Apple ][, and it
  780. comes with CP/M 3.0.  Any opinions/comments are welcome.
  781.  
  782.         Thanks muchly in advance,
  783.  
  784.             John Hutchinson
  785.  
  786.         (HUTCHINSON.UMASS-ECE@UDEL-RELAY)
  787.  8-Mar-83 13:57:00,408;000000000000
  788. Date:  8 March 1983 13:57 est
  789. From:  JJ-Hagen.2338i02S3@radc-multics.arpa
  790. Subject:  Addition to list
  791. To:  info-cpm@brl.arpa
  792. Received: From Radc-Multics.ARPA via smtptcp;  8 Mar 83 14:02 EST
  793. Received: From Brl.ARPA via smtptcp;  8 Mar 83 14:10 EST
  794. Received: From brl-gateway.ARPA via smtptcp;  8 Mar 83 14:27 EST
  795.  
  796. Please add my name to the cpm mailing lists.  Thanks.
  797.          JJ-Hagen@RADC-MULTICS
  798.  8-Mar-83 20:27:00,734;000000000000
  799. Date:  8 March 1983 20:27 est
  800. From:  Boebert.SCOMP@mit-multics.arpa
  801. Subject:  APDOS and Mince
  802. To:  info-cpm@brl.arpa
  803. Received: From Mit-Multics.ARPA via smtptcp;  8 Mar 83 22:18 EST
  804. Received: From Brl.ARPA via smtptcp;  8 Mar 83 22:25 EST
  805. Received: From brl-gateway.ARPA via smtptcp;  8 Mar 83 22:35 EST
  806.  
  807. Several times I have tried to transfer an Apple text file to Apple CP/M
  808. and edit it using Mince.  Mince always seems to either cough up the file
  809. with a "read error or no EOF" message, or it takes the file and then
  810. displays it as a single unformatted character string, with ctl-m and
  811. ctl-"at" shown literally.  What gives?
  812.  
  813. PS.  If it is a basic file and I do a load followed by a save,a then
  814. mince likes it fine.
  815.  8-Mar-83 21:42:00,513;000000000000
  816. Date: Tuesday, 8 March 1983  23:42-EST
  817. Sender: RG.JMTURN@mit-oz
  818. From: RG.JMTURN@mit-mc.arpa
  819. To:   Boebert.SCOMP@mit-multics.arpa
  820. Cc:   info-CPM@brl.arpa
  821. Subject: APDOS and Mince
  822. In-reply-to: Msg of 8 Mar 1983 20:27 est from Boebert.SCOMP at mit-multics.arpa
  823. Received: From Mit-Mc.ARPA via smtptcp;  8 Mar 83 23:46 EST
  824. Received: From Brl.ARPA via smtptcp;  8 Mar 83 23:51 EST
  825. Received: From brl-gateway.ARPA via smtptcp;  9 Mar 83 0:00 EST
  826.  
  827. Watch out for parity. Mince assumes 8 bit ASCII w/no parity.
  828.  9-Mar-83 13:56:00,838;000000000000
  829. Date: Wednesday,  9 Mar 1983 12:56-PST
  830. To: info-cpm@brl.arpa, info-micro@brl.arpa
  831. Subject: Perfect Writer/Formatter/Calc/Filer bugs
  832. From: bridger@rand-unix.arpa
  833. Received: From Rand-Unix.ARPA via smtptcp;  9 Mar 83 20:51 EST
  834. Received: From Brl.ARPA via smtptcp;  9 Mar 83 20:57 EST
  835. Received: From brl-gateway.ARPA via smtptcp;  9 Mar 83 21:00 EST
  836.  
  837.     I have been developing patches for bugs in the versions of
  838. Perfect Writer, Perfect Formatter, Perfect Calc and Perfect Filer
  839. distributed with the KayPro-II.  I would appreciate receiving reports
  840. of bugs or limitations others have encountered with this software,
  841. on any machine.  Please mail to me, describing symptoms, cure (if known!),
  842. version number, operating system and hardware configuration.  If interest
  843. warrants, I'll summarize for the net.
  844.                 bridger at RAND-UNIX
  845.  9-Mar-83 17:41:00,802;000000000000
  846. Date:  9 Mar 1983 1641-PST
  847. From: BHUBER@usc-ecl.arpa
  848. Subject: Re: APDOS and Mince
  849. To:   Boebert.SCOMP@mit-multics.arpa, info-cpm@brl.arpa
  850. cc:   BHUBER@usc-ecl.arpa
  851. Received: From Usc-Ecl.ARPA via smtptcp;  9 Mar 83 19:43 EST
  852. Received: From Brl.ARPA via smtptcp;  9 Mar 83 19:51 EST
  853. Received: From brl-gateway.ARPA via smtptcp;  9 Mar 83 19:55 EST
  854.  
  855. In response to the message sent   8 March 1983 20:27 est from Boebert.SCOMP@mit-multics.arpa
  856.  
  857. I ran into a similar problem when converting a large text file under CP/M
  858. from WordStar to The Final Word.  The problem was that some software uses
  859. the high level bit for additional attributes and TFW only recognizes "virgin"
  860. character representations.  Solution:  use PIP to ZERO the high level bit
  861. and she's a worka justa fine.
  862. Bud
  863. -------
  864.  9-Mar-83 18:05:00,1698;000000000000
  865. Date:  9 Mar 1983 1705-PST
  866. Subject: Rainbow 100 and file transfer
  867. From: Bill Rizzi <RIZZI@usc-isib.arpa>
  868. To: info-modem7@mit-mc.arpa
  869. cc: info-cpm@mit-mc.arpa, pourne@mit-mc.arpa
  870. Received: From Mit-Mc.ARPA via smtptcp;  9 Mar 83 20:12 EST
  871. Received: From Brl.ARPA via smtptcp;  9 Mar 83 20:23 EST
  872. Received: From brl-gateway.ARPA via smtptcp;  9 Mar 83 20:28 EST
  873.  
  874.  
  875.     I am glad to say that I have been able to create a version of
  876. the commercially available Ascom program that runs on the Rainbow 100.
  877. It uses the CPMUG (CP/M User Group ie. Ward Christensen) protocol as
  878. an option and I was successful in transferring files from a Kaypro II 
  879. running modem7 version 96 to the DEC.
  880.  
  881.     Now the bad news - Ascom does not properly terminate at the end
  882. of file transfer- it left the Kaypro dangling until it timed out.
  883. The same thing happened when I tried to get Ascom to talk
  884. to Whizlink (yet another Christensen protocol implementation) on a
  885. Toshiba system.  Even worse, the Rainbow could not send a file to the
  886. Kaypro due to bad sector # in header messages.  Most people are 
  887. interested in getting things onto the Rainbow, however.
  888.  
  889.     This brings up the problem of various packages that SAY they use
  890. the Christensen protocol and do for the most part, except for things
  891. like end of file, etc.  It's bad enough that modem7 has so many
  892. versions, but at least they can talk to each other properly.
  893.  
  894.     I heard from several people who have an 8088 version of modem7
  895. in assembly language, but never received the source.  If I manage
  896. to grab it somewhere, I will attempt to configure it for the Rainbow
  897. and make it available to any interested parties.
  898.  
  899.     Bill (RIZZI@ISIB)
  900.  
  901. -------
  902.  9-Mar-83 20:43:17,412;000000000000
  903. Date: 9 Mar 1983 22:43:17-EST
  904. From: reece@nadc.arpa
  905. To: info-cpm@brl.arpa
  906. Subject: copy programs
  907. Received: From Nadc.ARPA via smtptcp;  9 Mar 83 22:47 EST
  908. Received: From Brl.ARPA via smtptcp;  9 Mar 83 22:54 EST
  909. Received: From brl-gateway.ARPA via smtptcp;  9 Mar 83 23:04 EST
  910.  
  911. Can anyone tell me how to get FASTCOPY electronically? What is the difference
  912. between it and MCOPY on MIT-MC. 
  913.  
  914. Jim Reece
  915.  9-Mar-83 23:51:00,519;000000000000
  916. Date: 9 March 1983 23:51 EST
  917. From: Allan D. Plehn <PLEHN@mit-mc.arpa>
  918. To: INFO-CPM@brl.arpa
  919. Received: From Mit-Mc.ARPA via smtptcp;  9 Mar 83 23:54 EST
  920. Received: From Brl.ARPA via smtptcp;  9 Mar 83 23:59 EST
  921. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 0:07 EST
  922.  
  923. Does anyone know of a disk copy program that works on the SuperBrain
  924. QD?  SuperBrains are delivered without any disk copy program-yuk!
  925. Prefer free of course but willing to pay nominally for a program
  926. that will do the job.
  927.     Al Plehn
  928. 10-Mar-83 00:06:00,3010;000000000000
  929. Date: 10 March 1983 00:06 EST
  930. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  931. Subject:  Rainbow 100 and file transfer
  932. To: RIZZI@usc-isib.arpa
  933. cc: Info-Cpm@brl.arpa
  934. In-reply-to: The message of 9 Mar 1983 1705-PST from Bill Rizzi <RIZZI at usc-isib.arpa>
  935. Received: From Mit-Mc.ARPA via smtptcp;  10 Mar 83 0:09 EST
  936. Received: From Brl.ARPA via smtptcp;  10 Mar 83 0:21 EST
  937. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 0:28 EST
  938.  
  939. The "compatibility problems" between various programs which say they
  940. use the Christensen protocol are probably caused by timing errors in
  941. the program.  Some well-meaning, but misguided, person updating MODEM2
  942. and MODEM7 changed the 10 second timing to 2 or 3 seconds about a year
  943. or two back.  There was a VERY good reason for it being 10 seconds -
  944. to allow for slower disk systems' time it takes to write to the disk.
  945. This is particularly critical on mini-floppies - some of which have as
  946. slow as 30 milliseconds track-to-track seek time (I know, I have one -
  947. the Micropolis Mod II).  The result is (in some cases) that the
  948. end-of-file byte from the sender is lost by the receiving end.  The
  949. solution is simple - restore the timing back to the 10 seconds that
  950. Ward Christensen and I agreed was optimal.  Those commercial programs
  951. that don't work were probably based upon the public-domain versions
  952. that were available at the time they were written - probably the ones
  953. that had 2-3 second timing values.  If you contact the authors of the
  954. commercial programs, they should be able to tell you the addresses of
  955. where to patch the delays.
  956.  
  957. Your comments about MODEM7 having so many versions are well taken -
  958. however (flame on) if the program had been written right in the first
  959. place (and had been "clean" source code instead of the poorly
  960. formatted version that was released originally) many of the revisions
  961. would have been unnecessary.  It is inexcusable that the author of
  962. MODEM7 REMOVED ALL OF WARD CHRISTENSEN'S COMMENT LINES in the file!
  963. This made it almost impossible to service the program for updates/bug
  964. fixes, and in my opinion, caused updating it to be more prone to
  965. having bugs. (Flame off).
  966.  
  967. The present version of MODEM7 (MDM705) is finally in reasonable
  968. condition and has MANY new and useful features - a lot of which are
  969. especially useful here on the net (i.e., the terminal mode now allows
  970. ALL control characters to be passed to the modem, allows toggling the
  971. printer on and off, and has a buffer for the printer in case it's
  972. slower than the incoming data on the modem.  Mind you, I'm not saying
  973. it's perfect, but it finally in good enough shape that I've stopped
  974. recommending MODEM2xx to newcomers.  With the configuration files it
  975. is now no longer necessary to download the .ASM source file.  I
  976. consider that a major step forward and I would hope that people will
  977. not talk down this program simply because it has gone through so many
  978. versions.  That would be throwing away a lot of good work!
  979. --Keith <W8SDZ@MC>
  980. 10-Mar-83 04:26:00,1926;000000000000
  981. Date: 10 March 1983 04:26 EST
  982. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  983. Subject:  Rainbow 100 and file transfer
  984. To: RIZZI@usc-isib.arpa
  985. cc: INFO-CPM@mit-mc.arpa, INFO-MODEM7@mit-mc.arpa
  986. In-reply-to: The message of 9 Mar 1983 1705-PST from Bill Rizzi <RIZZI at usc-isib.arpa>
  987. Received: From Mit-Mc.ARPA via smtptcp;  10 Mar 83 5:36 EST
  988. Received: From Brl.ARPA via smtptcp;  10 Mar 83 5:41 EST
  989. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 5:44 EST
  990.  
  991. Tony Petsch wrote a transfer program that will send any kind of
  992. file fdr om any CP/M system to any CP/M system (provided that
  993. similar ports are available to connect the two machines.)  It
  994. works for KAYPRO and Otrona and I presume will work for Rainbow
  995. although at moment I do not have a Rainbow.
  996.     I wot e about 8500 words on the subject of file
  997. transfers in CP/M (logical and physical devices and all that
  998. crap) which apparently is being included as the documentation
  999. for this program.
  1000.     I expect there are other and simpler ways to send files
  1001. from one machine to another, but I have not yet seen one that
  1002. was completely reliable.  (PIP will work with short text files,
  1003. of courswe, but not long ones and not  binary).
  1004.     Tony's program sends in Intel Hex format (it hexifies)
  1005. and thus does not require any thing on the receiving end other
  1006. than PIP or a PIIP-like utility to catch the parts of the
  1007. program as they come across (this goofy sender chops the file
  1008. sent into pieces short enough that the receiving system can
  1009. catch them and write to disk, then open a new files to catch the
  1010. next part, etc; then one uses PIP to concatenat the whole mess.)
  1011.     Presumably there are other methods that would work?
  1012.     I am not being hesitant about where to get this thing T
  1013. ony wrote, but it is only availabel commercially and I gather
  1014. one should not advertise here; I invite someone to tell a
  1015. non-commercial source for a universal transporter...
  1016. 10-Mar-83 04:28:00,866;000000000000
  1017. Date: 10 March 1983 04:28 EST
  1018. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1019. Subject:  APDOS and Mince
  1020. To: BHUBER@usc-ecl.arpa
  1021. cc: Boebert.SCOMP@mit-multics.arpa, info-cpm@brl.arpa
  1022. In-reply-to: The message of 9 Mar 1983 1641-PST from BHUBER at usc-ecl.arpa
  1023. Received: From Mit-Mc.ARPA via smtptcp;  10 Mar 83 5:36 EST
  1024. Received: From Brl.ARPA via smtptcp;  10 Mar 83 5:41 EST
  1025. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 5:56 EST
  1026.  
  1027. DO NOT USE PIP TO ZERO the 8th bit for word star or you will
  1028. have a screwed up file with goofy carriage returns and plenty
  1029. spaces where you don't want them and no way yo format it
  1030. properly.
  1031.     It's easy enough to write a filter that will eliminate
  1032. the extra spaces and extra carriage returns WordStar puts in,
  1033. and output your file in the format that your new edityor wants
  1034. it; do that, instead of using PIP....
  1035. 10-Mar-83 04:38:00,542;000000000000
  1036. Date: 10 March 1983 04:38 EST
  1037. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1038. Subject:  MIT-MC CPM DIRLST updated
  1039. To: TCARNAHAN@usc-isie.arpa
  1040. cc: INFO-CPM@mit-mc.arpa, W8SDZ@mit-mc.arpa, INFO-CPM-REQUEST@brl.arpa
  1041. In-reply-to: The message of 7 Mar 1983 2004-PST from Tom Carnahan <TCARNAHAN at usc-isie.arpa>
  1042. Received: From Mit-Mc.ARPA via smtptcp;  10 Mar 83 5:36 EST
  1043. Received: From Brl.ARPA via smtptcp;  10 Mar 83 5:41 EST
  1044. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 5:56 EST
  1045.  
  1046. of course I DO have piles of moeemory....
  1047. 10-Mar-83 04:39:00,702;000000000000
  1048. Date: 10 March 1983 04:39 EST
  1049. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1050. Subject:  MIT-MC CPM DIRLST updated
  1051. To: TCARNAHAN@usc-isie.arpa
  1052. cc: INFO-CPM@mit-mc.arpa, W8SDZ@mit-mc.arpa, INFO-CPM-REQUEST@brl.arpa
  1053. In-reply-to: The message of 7 Mar 1983 2004-PST from Tom Carnahan <TCARNAHAN at usc-isie.arpa>
  1054. Received: From Mit-Mc.ARPA via smtptcp;  10 Mar 83 5:36 EST
  1055. Received: From Brl.ARPA via smtptcp;  10 Mar 83 5:41 EST
  1056. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 5:59 EST
  1057.  
  1058. oops, sorry, last message intended for another ..
  1059. is there any way to UNSEND a message when you see that the NET
  1060. has bitten you (what happened was I thought I was replying to a
  1061. previous message)....
  1062. 10-Mar-83 05:05:00,1764;000000000000
  1063. Date: 10 March 1983 05:05 EST
  1064. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1065. Subject:  CPM-68
  1066. To: goldfarb.ucf-cs@rand-relay.arpa
  1067. cc: info-cpm@brl.arpa
  1068. In-reply-to: The message of 28 Feb 83 12:22:11 EST  (Mon) from Ben Goldfarb <goldfarb.ucf-cs at rand-relay.arpa>
  1069. Received: From Mit-Mc.ARPA via smtptcp;  10 Mar 83 5:36 EST
  1070. Received: From Brl.ARPA via smtptcp;  10 Mar 83 5:42 EST
  1071. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 6:00 EST
  1072.  
  1073. I'll know more after teh show.  Apparently they got their ads
  1074. out too early.  Pity.  I do not have any of that stuff running
  1075. either...
  1076.  
  1077. the os for the 68000 board is written in forth and that exists.
  1078.  
  1079. jep    Date: 28 Feb 83 12:22:11 EST  (Mon)
  1080.     From: Ben Goldfarb <goldfarb.ucf-cs at rand-relay.arpa>
  1081.     To:   info-cpm at brl.arpa
  1082.     Re:   CPM-68
  1083.  
  1084.     Terrific!  I called Priority 1 this morning to ask when CPM-68
  1085.     would be available for Godbout/CompuPro systems and the answer
  1086.     was, "six months from now."  So I guess I can play tiddly-winks
  1087.     with the 68K board until then.
  1088.  
  1089.     But seriously, given a cross-assembler (which I'd either write 
  1090.     or purchase), how easy or difficult wo it be for someone who
  1091.     has a lot of CBIOS experience with CPM-80 and CPM-86 to write
  1092.     a BIOS and install CPM-68 using a CPM-80 or CPM86 system as the
  1093.     development machine?  I'm particularly interested in comments 
  1094.     from those who have actually done the job (mknox@utexas-11 et al).
  1095.  
  1096.     Also, does anyone know the chance of getting one of these so-called
  1097.     beta versions that everyone saw running on CompuPro stuff at CPM-83?
  1098.  
  1099.                     Disgusted at CompuPro,
  1100.  
  1101.                     Ben Goldfarb
  1102.                     ARPA: goldfarb.ucf-cs@Rand-Relay
  1103.                     uucp: ...!duke!ucf-cs!goldfarb
  1104. 10-Mar-83 05:57:00,820;000000000000
  1105. Date: 10 March 1983 05:57 EST
  1106. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  1107. Subject:  CP/M to CP/M file transfers
  1108. To: POURNE@mit-mc.arpa
  1109. cc: Info-Cpm@brl.arpa
  1110. In-reply-to: The message of 10 Mar 1983 04:26 EST from Jerry E. Pournelle <POURNE>
  1111. Received: From Mit-Mc.ARPA via smtptcp;  10 Mar 83 6:04 EST
  1112. Received: From Brl.ARPA via smtptcp;  10 Mar 83 6:18 EST
  1113. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 6:23 EST
  1114.  
  1115. Jerry, have you EVER tries ANY version of MODEM2 or MODEM7?  If you
  1116. need to transfer files from one CP/M-80 system to another this one
  1117. will do it - with OR WITHOUT modems.  It works just as well on RS-232
  1118. ports tied back-to-back.  MODEM7 (available here on MC  as MDM705) has
  1119. a "batch transfer" option which would let you do a whole disk if you
  1120. wanted to.  I hope you'll try it soon.
  1121. 10-Mar-83 07:49:00,1534;000000000000
  1122. Date: 10 Mar 1983 0849-CST
  1123. From: John Otken <CC.Otken@utexas-20.arpa>
  1124. Subject: Re: Rainbow 100 and file transfer
  1125. To: POURNE@mit-mc.arpa, RIZZI@usc-isib.arpa
  1126. cc: INFO-CPM@mit-mc.arpa, INFO-MODEM7@mit-mc.arpa
  1127. In-Reply-To: Your message of 10-Mar-83 0426-CST
  1128. Received: From Mit-Mc.ARPA via smtptcp;  10 Mar 83 9:54 EST
  1129. Received: From Brl.ARPA via smtptcp;  10 Mar 83 10:31 EST
  1130. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 10:44 EST
  1131.  
  1132. I just wrote a file transfer program for UT which works in a manner
  1133. similar to what you described, Jerry.  Except it is really intended to
  1134. do micro - mainframe transfers (MODEM7 didn't quite fit the bill).
  1135. There is no reason it can't do micro - micro transfers but, since we
  1136. have only one micro, I can't test that aspect.
  1137.  
  1138. It uses intel hex as the transfer protocol EXCEPT that I have added
  1139. ACKs and NAKs.  If you just want to send intel hex w/o ACKing and
  1140. NAKing then comment out a few lines and presto!
  1141.  
  1142. The program is in FORTRASH (at least the file transfer subroutines)
  1143. and since we have made the same source work under CP/M, TOPS20, UNIX,
  1144. VAX VMS and our own CDC Cyber O.S., I'd say its portable.
  1145.  
  1146. It's all done sans the spit and shine on the documentation (take a
  1147. week or two) and anyone who wants it may have a copy.  Although, as
  1148. you can guess, it is SLOWer than MODEM7.  But it takes about three
  1149. days to bring up on a different host, a claim I don't believe can be
  1150. made by non-CP/M MODEM7 users.  This program is a real idiot, by design.
  1151.  
  1152. John.
  1153. -------
  1154. 10-Mar-83 09:46:39,541;000000000000
  1155. Date: 10 Mar 1983 08:46:39-PST
  1156. From: Jim Gilbreath <CCVAX.gil@nosc-cc.arpa>
  1157. Reply-to: CCVAX.gil@nosc-cc.arpa
  1158. To: POURNE@mit-mc.arpa, RIZZI@usc-isib.arpa
  1159. Subject: Re:  Rainbow 100 and file transfer
  1160. Cc: INFO-CPM@mit-mc.arpa, INFO-MODEM7@mit-mc.arpa
  1161. Received: From Mit-Mc.ARPA via smtptcp;  10 Mar 83 12:18 EST
  1162. Received: From Brl.ARPA via smtptcp;  10 Mar 83 12:28 EST
  1163. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 12:37 EST
  1164.  
  1165. We use MOVE-IT from Wolff Software.  It does everything VERY nicely,
  1166. error corrected, and fast.
  1167. 10-Mar-83 11:11:47,724;000000000000
  1168. Return-Path: <goldfarb.UCF-CS@Rand-Relay>
  1169. Date: 10 Mar 1983 10:11:47-PST
  1170. From: goldfarb.ucf-cs@rand-relay.arpa
  1171. Subject: Re:  CPM-68
  1172. To: POURNE@mit-mc.arpa
  1173. Cc: info-cpm@brl.arpa
  1174. Via:  UCF-CS; 10 Mar 83 20:39-PDT
  1175. Received: From Rand-Relay.ARPA via smtptcp;  11 Mar 83 1:29 EST
  1176. Received: From Brl.ARPA via smtptcp;  11 Mar 83 1:38 EST
  1177. Received: From brl-gateway.ARPA via smtptcp;  11 Mar 83 1:46 EST
  1178.  
  1179. Things have improved.  I have a C cross-compiler and a couple of
  1180. cross assemblers for the 68000.  I'll be writing a boot eprom, perhaps
  1181. a low-level monitor, and a BIOS.  I'll probably write the BIOS in C and the
  1182. rest in assembler.  I'll be able to finish all of that before Compupro
  1183. does, I'm sure.
  1184.                         Ben
  1185. 10-Mar-83 13:31:00,928;000000000000
  1186. Date: 10 Mar 1983 1231-PST
  1187. From: BHUBER@usc-ecl.arpa
  1188. Subject: Re: APDOS and Mince
  1189. To:   POURNE@mit-mc.arpa
  1190. cc:   Boebert.SCOMP@mit-multics.arpa, info-cpm@brl.arpa
  1191. cc:   BHUBER@usc-ecl.arpa
  1192. Received: From Usc-Ecl.ARPA via smtptcp;  10 Mar 83 15:33 EST
  1193. Received: From Brl.ARPA via smtptcp;  10 Mar 83 15:40 EST
  1194. Received: From brl-gateway.ARPA via smtptcp;  10 Mar 83 15:44 EST
  1195.  
  1196. In response to your message sent  10 March 1983 04:28 EST
  1197.  
  1198. Although you are technically correct, the extra <CR/LF>s don't mean anything
  1199. to The Final Word when it goes into its formatting routines.  Same for the
  1200. extra spaces.  I just took the easy way out.
  1201. Bud
  1202. P.S., the reason for changing the document from WordStar to The Final Word
  1203. was to get camera ready copy on a proportionally spacing Diablo 1650 for an
  1204. IEEE publication.  I still prefer WS for overall WP functions.  TFW has a
  1205. problem handling footnotes correctly.
  1206. -------
  1207. 10-Mar-83 13:46:48,870;000000000000
  1208. Return-Path: <goldfarb.UCF-CS@Rand-Relay>
  1209. Date: 10 Mar 1983 12:46:48-PST
  1210. From: goldfarb.ucf-cs@rand-relay.arpa
  1211. Subject: Re:  Rainbow 100 and file transfer
  1212. To: POURNE@mit-mc.arpa
  1213. Cc: info-cpm@brl.arpa
  1214. Via:  UCF-CS; 10 Mar 83 20:40-PDT
  1215. Received: From Rand-Relay.ARPA via smtptcp;  11 Mar 83 1:30 EST
  1216. Received: From Brl.ARPA via smtptcp;  11 Mar 83 1:38 EST
  1217. Received: From brl-gateway.ARPA via smtptcp;  11 Mar 83 1:46 EST
  1218.  
  1219. There is a noncommercial product similar to the one you  describe,
  1220. Jerry.  Written in BDS C, it is called PH.C.  It, too, hexifies the
  1221. source (binary) file for transmission to the target machine, which
  1222. need only have PIP to receive it.  It has been around for about a 
  1223. year and is available on better RCP/M systems everywhere.  Offhand,
  1224. I believe it is on MC, but I don't have a copy of the directory handy
  1225. while I'm writing this.
  1226. 11-Mar-83 00:15:00,746;000000000000
  1227. Date: 11 March 1983 00:15 EST
  1228. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  1229. Subject: Dual copies to INFO-MODEM7 people
  1230. To: Info-Cpm@brl.arpa
  1231. Received: From Mit-Mc.ARPA via smtptcp;  11 Mar 83 2:30 EST
  1232. Received: From Brl.ARPA via smtptcp;  11 Mar 83 2:32 EST
  1233. Received: From brl-gateway.ARPA via smtptcp;  11 Mar 83 2:38 EST
  1234.  
  1235. Please don't CC: INFO-MODEM7 when sending a message to INFO-CPM.
  1236. Everyone on the INFO-MODEM7 mailing list is also on INFO-CPM.
  1237.  
  1238. INFO-MODEM7@MC is a mailing list for the maintainers of the
  1239. MODEM7 series programs.  The list is specifically for discussions on
  1240. proposed updates/revisions to that program ONLY and should not
  1241. normally be sent mail referring to other transfer programs.
  1242.  
  1243. Thanks.  -- Keith <W8SDZ@MC>
  1244. 11-Mar-83 03:33:00,620;000000000000
  1245. Date: 11 March 1983 03:33 EST
  1246. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1247. Subject:  CPM-68
  1248. To: goldfarb.ucf-cs@rand-relay.arpa
  1249. cc: info-cpm@brl.arpa
  1250. In-reply-to: The message of 10 Mar 1983 10:11:47-PST from goldfarb.ucf-cs at rand-relay.arpa
  1251. Received: From Mit-Mc.ARPA via smtptcp;  11 Mar 83 3:35 EST
  1252. Received: From Brl.ARPA via smtptcp;  11 Mar 83 3:45 EST
  1253. Received: From brl-gateway.ARPA via smtptcp;  11 Mar 83 3:51 EST
  1254.  
  1255. terrific.  I can have a s-100 68000 running here any time
  1256. there's a point to doing it, but so far the only 68000 we have
  1257. is the Sage which runs SCUD Pascal as the oprating systm..
  1258. 11-Mar-83 03:39:00,841;000000000000
  1259. Date: 11 March 1983 03:39 EST
  1260. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1261. Subject:  Rainbow 100 and file transfer
  1262. To: CC.Otken@utexas-20.arpa
  1263. cc: INFO-CPM@mit-mc.arpa, INFO-MODEM7@mit-mc.arpa, RIZZI@usc-isib.arpa
  1264. In-reply-to: The message of 10 Mar 1983 0849-CST from John Otken <CC.Otken at utexas-20.arpa>
  1265. Received: From Mit-Mc.ARPA via smtptcp;  11 Mar 83 3:42 EST
  1266. Received: From Brl.ARPA via smtptcp;  11 Mar 83 3:46 EST
  1267. Received: From brl-gateway.ARPA via smtptcp;  11 Mar 83 3:51 EST
  1268.  
  1269. our send-hex takes about ten mionutes to bring up on a new host,
  1270. but of course the host has to be a CP/M system.  I'd be
  1271. interested in your program when it's available; also in any
  1272. documents or essays on the subject.  I find the whole business
  1273. of transfers insteresting since it turns out that most of the
  1274. "standards" aren't...
  1275. jep
  1276. 11-Mar-83 03:45:00,1317;000000000000
  1277. Date: 11 March 1983 03:45 EST
  1278. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1279. Subject:  CP/M to CP/M file transfers
  1280. To: W8SDZ@mit-mc.arpa
  1281. cc: Info-Cpm@brl.arpa
  1282. In-reply-to: The message of 10 Mar 1983 05:57 EST from Keith Petersen <W8SDZ at mit-mc.arpa>
  1283. Received: From Mit-Mc.ARPA via smtptcp;  11 Mar 83 3:46 EST
  1284. Received: From Brl.ARPA via smtptcp;  11 Mar 83 3:56 EST
  1285. Received: From brl-gateway.ARPA via smtptcp;  11 Mar 83 4:02 EST
  1286.  
  1287. works fine if you have the programs on both machines.  Not so
  1288. good if the receiving machine don't have the program.  T hen
  1289. comes problem of how to get the program onto the receiving
  1290. machine.  Or is that easy and I just don't know it?
  1291.  
  1292. -------------------------
  1293.  
  1294.     Date: 10 March 1983 05:57 EST
  1295.     From: Keith Petersen <W8SDZ at mit-mc.arpa>
  1296.     To:   POURNE at mit-mc.arpa
  1297.     cc:   Info-Cpm at brl.arpa
  1298.     Re:   CP/M to CP/M file transfers
  1299.  
  1300.     Jerry, have you EVER tries ANY version of MODEM2 or MODEM7?  If you
  1301.     need to transfer files from one CP/M-80 system to another this one
  1302.     will do it - with OR WITHOUT modems.  It works just as well on RS-232
  1303.     ports tied back-to-back.  MODEM7 (available here on MC  as MDM705) has
  1304.     a "batch transfer" option which would let you do a whole disk if you
  1305.     wanted to.  I hope you'll try it soon.
  1306. 11-Mar-83 03:50:00,1797;000000000000
  1307. Date: 11 March 1983 03:50 EST
  1308. From: Frank J. Wancho <FJW@mit-mc.arpa>
  1309. Subject:  Alternate Sources
  1310. To: INFO-CPM@brl.arpa
  1311. Received: From Mit-Mc.ARPA via smtptcp;  11 Mar 83 3:52 EST
  1312. Received: From Brl.ARPA via smtptcp;  11 Mar 83 3:57 EST
  1313. Received: From brl-gateway.ARPA via smtptcp;  11 Mar 83 4:03 EST
  1314.  
  1315. The APPLE Users Group of El Paso, TX sponsors an RBBS on a NorthStar
  1316. Hard Disk CP/M system running TSS/C (certainly a contradiction in
  1317. terms).  The system has been on a hiatus since it was converted back
  1318. in early January, but is now back up with even more available space
  1319. than ever - 6 2MByte logical disk drives for a total of 12MBytes.
  1320.  
  1321. To kick it off, I have loaded about half the system already with 60
  1322. .LBR files (5698K) of SQueezed files downloaded from MC and other
  1323. sources over the past two years or so.  All the files are up-to-date
  1324. as of yesterday, and include the latest collection of ZCPR2 files
  1325. (except the SYSLIB set), and MODEM 705 (absolutely the last version of
  1326. MODEM 7 I will ever download), and take up most of the B:, C:, and D:
  1327. drives.  Both LDIR and LMODEM (LU-MODEM) are available to help you
  1328. make selective downloads if you do not wish to download an entire .LBR
  1329. file using XMODEM.
  1330.  
  1331. The system will be up 24-hours a day, seven days a week, and presently
  1332. supports only 110 and 300 baud, with a PMMI to be installed "soon".
  1333. The number is 915-533-2202, no ringback.  Wade through the RBBS and
  1334. into CP/M and have at it!
  1335.  
  1336. This message is also to serve as notice that I am rescinding the offer
  1337. I made last May to supply this set of files to anyone who sends me a
  1338. package of NorthStar Quad disks and return postage.  For those who
  1339. send me their disks some time ago, this same collection will be out in
  1340. the mail in a couple of days.
  1341.  
  1342. --Frank
  1343. 11-Mar-83 05:31:00,1380;000000000000
  1344. Date: 11 March 1983 05:31 EST
  1345. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  1346. Subject:  CP/M to CP/M file transfers
  1347. To: POURNE@mit-mc.arpa
  1348. cc: Info-Cpm@brl.arpa
  1349. In-reply-to: The message of 11 Mar 1983 03:45 EST from Jerry E. Pournelle <POURNE>
  1350. Received: From Mit-Mc.ARPA via smtptcp;  11 Mar 83 5:45 EST
  1351. Received: From Brl.ARPA via smtptcp;  11 Mar 83 5:55 EST
  1352. Received: From brl-gateway.ARPA via smtptcp;  11 Mar 83 5:57 EST
  1353.  
  1354. Yes, there is an easy way of getting started with MODEM2 or MODEM7.
  1355. It's a program called MBOOT.  It's relatively short (about 6k) of
  1356. source code for a receive-only (no-frills) version of Ward's MODEM2
  1357. program.  It's easily typed in on the target machine.  All that's
  1358. required is knowledge of the port number being used, the bits to test for
  1359. send and receive.  It assumes that you have already initialized the
  1360. port for the desired baud rate, 8 data bits, one stop bit, and no
  1361. parity.  This is a bit more preparation than using the simple PIP HEX
  1362. file approach, but after it's up and running you can transfer any
  1363. program fast and with full error checking.  After you get MBOOT
  1364. running you can use it to get MODEM7 and you'll have full batch
  1365. transfer capability.  MBOOT is available on MIT-MC as:
  1366.  
  1367. AR60:CPM;MBOOT 3ASM
  1368.  
  1369. It is also available on every RCPM system across the country, and has
  1370. been published in Dr. Dobbs Journal.
  1371. --Keith
  1372. 11-Mar-83 08:58:23,633;000000000000
  1373. Date: 11 Mar 1983 07:58:23-PST
  1374. From: CCVAX.revc@nosc-cc.arpa
  1375. To: Boebert.SCOMP@mit-multics.arpa, info-cpm@brl.arpa
  1376. Subject: 8th bit in WordStar
  1377. Received: From Nosc-Cc.ARPA via smtptcp;  11 Mar 83 11:17 EST
  1378. Received: From Brl.ARPA via smtptcp;  11 Mar 83 11:21 EST
  1379. Received: From brl-gateway.ARPA via smtptcp;  11 Mar 83 11:31 EST
  1380.  
  1381. Instead of using PIP to zero the 8th bit, print the file to a
  1382. DISK file with justification turned off.  This will remove all
  1383. of the WordStar characters, ie; Soft Spaces, Hyphens, Carriage
  1384. Returns, and leave you with a clean, editable file without all
  1385. the extra blanks between words. - Bob
  1386. 11-Mar-83 12:15:07,1015;000000000000
  1387. Date: 11 Mar 1983 11:15:07-PST
  1388. From: Jim Gilbreath <CCVAX.gil@nosc-cc.arpa>
  1389. Reply-to: CCVAX.gil@nosc-cc.arpa
  1390. To: POURNE@mit-mc.arpa
  1391. Subject: Re:  Rainbow 100 and file transfer
  1392. Cc: info-cpm@brl.arpa
  1393. Received: From Nosc-Cc.ARPA via smtptcp;  11 Mar 83 14:35 EST
  1394. Received: From Brl.ARPA via smtptcp;  11 Mar 83 14:47 EST
  1395. Received: From brl-gateway.ARPA via smtptcp;  11 Mar 83 14:58 EST
  1396.  
  1397. Move-It is from Woolf Software, 23842 Archwood St, Canoga Park, CA
  1398. 91307 (213) 703-8112.  Probably a local call for you.
  1399.  
  1400. It was reviewed in July 82 Interface Age (very favorably) and has been
  1401. improved some since.  It works extremely well, and has nice features
  1402. such as the ability to get DIR listings from either the remote or loacl
  1403. computer, messages, terminal mode, wildcard use (e.g. GET *.COM), and
  1404. error control.  Really what you want for downloading files from
  1405. 8" systems to the multitudinous 5" formats, as well as for general
  1406. comm use. Don't remember the price, but in vicinity of $125 I think.
  1407. -gil
  1408. 12-Mar-83 03:25:00,827;000000000000
  1409. Date: 12 March 1983 03:25 EST
  1410. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1411. Subject:  Rainbow 100 and file transfer
  1412. To: CCVAX.gil@nosc-cc.arpa
  1413. cc: info-cpm@brl.arpa
  1414. In-reply-to: The message of 11 Mar 1983 11:15:07-PST from Jim Gilbreath <CCVAX.gil at nosc-cc.arpa>
  1415. Received: From Mit-Mc.ARPA via smtptcp;  12 Mar 83 3:26 EST
  1416. Received: From Brl.ARPA via smtptcp;  12 Mar 83 3:33 EST
  1417. Received: From brl-gateway.ARPA via smtptcp;  12 Mar 83 3:34 EST
  1418.  
  1419. sounds good.
  1420. alas, there is in pipeline an article on a send-hex t hat we
  1421. wrote (because I didn't read although I get the Interface Age).
  1422. I'll have to see if I can get theirs and mention it; but don't b
  1423. e surprised to see an article on file transfers by me that
  1424. doesn't mention it.  That damned pipeline is LONG.
  1425.     I shall talk to the WOOLF people though...
  1426. JEP
  1427. 12-Mar-83 03:38:00,730;000000000000
  1428. Date: 12 March 1983 03:38 EST
  1429. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1430. Subject:  CP/M to CP/M file transfers
  1431. To: W8SDZ@mit-mc.arpa
  1432. cc: Info-Cpm@brl.arpa
  1433. In-reply-to: The message of 11 Mar 1983 05:31 EST from Keith Petersen <W8SDZ at mit-mc.arpa>
  1434. Received: From Mit-Mc.ARPA via smtptcp;  12 Mar 83 3:39 EST
  1435. Received: From Brl.ARPA via smtptcp;  12 Mar 83 3:44 EST
  1436. Received: From brl-gateway.ARPA via smtptcp;  12 Mar 83 3:45 EST
  1437.  
  1438. I'll get it and look at it; but I think you over estimate the
  1439. degree of informat ion most people have, and their ability to
  1440. manipulate this stuff.
  1441.  
  1442. It is  easy enough to tool up and learn these things for a few
  1443. days (at least it is for me) but it is also very easy to forget it..
  1444. 12-Mar-83 03:40:00,517;000000000000
  1445. Date: 12 March 1983 03:40 EST
  1446. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1447. Subject:  CP/M to CP/M file transfers
  1448. To: W8SDZ@mit-mc.arpa
  1449. cc: Info-Cpm@brl.arpa
  1450. In-reply-to: The message of 11 Mar 1983 05:31 EST from Keith Petersen <W8SDZ>
  1451. Received: From Mit-Mc.ARPA via smtptcp;  12 Mar 83 3:41 EST
  1452. Received: From Brl.ARPA via smtptcp;  12 Mar 83 3:44 EST
  1453. Received: From brl-gateway.ARPA via smtptcp;  12 Mar 83 3:46 EST
  1454.  
  1455. Incidentally, is there any one place where a lot of this
  1456. information is put together?
  1457. 12-Mar-83 03:47:00,1230;000000000000
  1458. Date: 12 March 1983 03:47 EST
  1459. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  1460. Subject: Publik Key Encryption
  1461. To: MINSKY@mit-mc.arpa, POURNELLE@mit-mc.arpa, info-cpm@brl.arpa
  1462. Received: From Mit-Mc.ARPA via smtptcp;  12 Mar 83 3:48 EST
  1463. Received: From Brl.ARPA via smtptcp;  12 Mar 83 3:55 EST
  1464. Received: From brl-gateway.ARPA via smtptcp;  12 Mar 83 3:56 EST
  1465.  
  1466.  
  1467.     I have a Public Key "Trapdoor" crypto system that works fine on
  1468.     a Z-80 micro.
  1469.  
  1470.     At least it seems to work fine -- I have no way to know how
  1471.     secure the code generated really is.
  1472.  
  1473.     For those interested:  the public key (mine) is under
  1474.     MC:POURNE;PUBLIC kEY and two messages encrypted with it are 
  1475.     MC:POURNE;SECRET MSG  (37 words) and
  1476.     MC:POURNE;SECRET VITA (1038 words).
  1477.  
  1478.         I'll buy dinner for the first person to tell me the
  1479.     secret message (not the vita which is obtainable).  I'd be
  1480.     intrested in just how secure this stuff is, and what resources
  1481.     are needed to break it (if it can be done).
  1482.  
  1483.         Best,
  1484.  
  1485.         JERRY Pournelle
  1486.         (In about 3 months the public key and secret message
  1487.     will appear in BYTE, but one presumes that by then someone will
  1488.     have cracked it if it is crackable..
  1489.  
  1490.     )
  1491. 12-Mar-83 10:48:00,1163;000000000000
  1492. Date: 12 Mar 1983 1248-EST
  1493. From: J. Eliot B. Moss <EBM@mit-xx.arpa>
  1494. Subject: Hard disks
  1495. To: info-cpm@mit-mc.arpa
  1496. Received: From Mit-Mc.ARPA via smtptcp;  12 Mar 83 12:48 EST
  1497. Received: From Brl.ARPA via smtptcp;  12 Mar 83 12:53 EST
  1498. Received: From brl-gateway.ARPA via smtptcp;  12 Mar 83 12:55 EST
  1499.  
  1500. I don't know if this is news to most people, but I recently found that
  1501. one can set up 5 Mb of hard on an S-100 system for about $1000.  $500
  1502. for a Morrow Designs controller board (standard Seagate Tech. ST-506
  1503. interface, controls up to 4 drives) and $495 for a Western Dynex Corp.
  1504. 5 Mb REMOVABLE CARTRIDGE drive, advertised in a recent BYTE.  I called
  1505. California Digital and they have the Morrow board in stock at $495; the
  1506. Western Dynex people said I could buy two of the 5 Mb drives at $495
  1507. each (it is the OEM discount price) and the cartridges are $50 a piece.
  1508. I also saw a recent ad for a 67 Mb (unformatted) drive for $1500.  So,
  1509. 5 Mb removable for $1K, 60 Mb non-removable for $2K, including controller.
  1510. I think the board comes with sample BIOS code, too.
  1511.             Eliot
  1512. PS - I may be buying one or both of these in the near future.
  1513. -------
  1514. 12-Mar-83 12:45:00,1332;000000000000
  1515. Return-Path: <tekmdp!laurir.tektronix@Rand-Relay>
  1516. Date: 12 Mar 1983 at 1145-PST (Saturday)
  1517. From: tekmdp!laurir.Tektronix@rand-relay.arpa
  1518. Subject: need hints for DEADLINE, the Zork-like murder mystery game
  1519. To: tektronix!info-cpm@mit-mc.arpa
  1520. Via:  tektronix; 12 Mar 83 23:52-PDT
  1521. Received: From Mit-Mc.ARPA via smtptcp;  14 Mar 83 11:52 EST
  1522. Received: From Brl.ARPA via smtptcp;  14 Mar 83 16:13 EST
  1523. Received: From brl-gateway.ARPA via smtptcp;  14 Mar 83 16:26 EST
  1524.  
  1525. DEADLINE is an adventure-like game in which the player is a police
  1526. inspector attempting to solve a locked-door murder mystery.  It is
  1527. available for various personal computers, including TRS-80, Apple,
  1528. Atari, IBM PC, and generic CP/M-80 from Infocom, the folks who gave
  1529. us Zork I, Zork II, Zork III, and Starcross (all highly recommended).
  1530.  
  1531. I am unable to get very far with DEADLINE (I guess I'm not much of
  1532. a detective).  I have the hints published by the Zork User's Group,
  1533. which consist entirely of a map of known space, but this doesn't
  1534. help.  I would very much appreciate hints from any experienced
  1535. DEADLINE players.
  1536.  
  1537. Please respond via mail; we on the Usenet have been cut off from
  1538. INFO-CPM since mid-January.
  1539.  
  1540.   -- Andrew Klossner (decvax!tektronix!tekmdp!laurir)  [Usenet]
  1541.                      (laurir.tektronix@rand-relay)     [ARPA]
  1542. 13-Mar-83 14:45:00,720;000000000000
  1543. Date: 13 March 1983 14:45 EST
  1544. From: Eric J. Swenson <EJS@mit-mc.arpa>
  1545. Subject:  Small-C V2.0
  1546. To: INFO-CPM@mit-mc.arpa
  1547. Received: From Mit-Mc.ARPA via smtptcp;  14 Mar 83 11:58 EST
  1548. Received: From Brl.ARPA via smtptcp;  14 Mar 83 16:14 EST
  1549. Received: From brl-gateway.ARPA via smtptcp;  14 Mar 83 16:27 EST
  1550.  
  1551. The Small-C V2.0 archives on MIT-MC (CPM;AR76: and CPM;AR77:) have been
  1552. updated with a new version of the CP/M runtime support (CPM;AR77:RUNTIM
  1553. MAC).  All references to ROM routines have been replaced with the
  1554. appropriate calls to the BDOS.  The file CC4.MAC was also updated with some
  1555. bug fixes from Mr. Danielson in the peephole optimizer.  The new C.HEX file
  1556. reflects the changes to RUNTIM and CC4.
  1557. 13-Mar-83 16:21:00,835;000000000000
  1558. Date: 13 March 1983 16:21 EST
  1559. From: Edward Huang <EH@mit-ai.arpa>
  1560. Subject: MMODEM
  1561. To: PLEHN@mit-ai.arpa, GZ@mit-mc.arpa
  1562. cc: EH@mit-ai.arpa, INFO-CPM@brl.arpa
  1563. Received: From Mit-Ai.ARPA via smtptcp;  14 Mar 83 12:18 EST
  1564. Received: From Brl.ARPA via smtptcp;  14 Mar 83 16:15 EST
  1565. Received: From brl-gateway.ARPA via smtptcp;  14 Mar 83 16:29 EST
  1566.  
  1567. Hello,
  1568. I was in the middle of MMODEM and it suddenly aborted on
  1569. the 40H sector of a 50H sector file... I think what screwed
  1570. it up was that I got a msg from Plehn. Looks like MMODEM
  1571. doesnt do a TCTYP REFUSE ????
  1572.  
  1573. by the way,another hint/tip: If you are on ITS and want
  1574. to download a file from the CP/M archive, :COPY it first
  1575. from the archive to your disk area and then run MMODEM -
  1576. archives take a LOT LONGER to access (esp when on a ITS
  1577. other than MC) !!
  1578.  
  1579. Later,
  1580. -Ed
  1581. 13-Mar-83 18:04:00,759;000000000000
  1582. Date: 13 Mar 1983 2004-EST
  1583. From: J. Eliot B. Moss <EBM@mit-xx.arpa>
  1584. Subject: Hard disks
  1585. To: info-cpm@mit-mc.arpa
  1586. Received: From Mit-Mc.ARPA via smtptcp;  14 Mar 83 15:18 EST
  1587. Received: From Brl.ARPA via smtptcp;  14 Mar 83 16:25 EST
  1588. Received: From brl-gateway.ARPA via smtptcp;  14 Mar 83 17:12 EST
  1589.  
  1590. The info I quoted recently comes from ads and articles in a recent
  1591. Mini-MicroSystems -- the one with all the tables listing available
  1592. drives and their specs.  Just thought people might want to know.
  1593.  
  1594. Also, more than one person said that Western Dynex is having problems
  1595. and is not yet shipping the 5 Mb drive; silly me, I did not ask them
  1596. about delivery.  If I look into it further, I will report back for
  1597. those interested.
  1598.                 Eliot
  1599. -------
  1600. 13-Mar-83 18:40:00,1223;000000000000
  1601. Date: 13 March 1983 18:40 EST
  1602. From: Gail Zacharias <GZ@mit-mc.arpa>
  1603. Subject:  MMODEM
  1604. To: EH@mit-ai.arpa
  1605. cc: INFO-CPM@brl.arpa, PLEHN@mit-ai.arpa
  1606. Received: From Mit-Mc.ARPA via smtptcp;  14 Mar 83 12:03 EST
  1607. Received: From Brl.ARPA via smtptcp;  14 Mar 83 16:14 EST
  1608. Received: From brl-gateway.ARPA via smtptcp;  14 Mar 83 16:28 EST
  1609.  
  1610.     Date: 13 March 1983 16:21 EST
  1611.     From: Edward Huang <EH at MIT-AI>
  1612.     I was in the middle of MMODEM and it suddenly aborted on the 40H sector of
  1613.     a 50H sector file... I think what screwed it up was that I got a msg from
  1614.     Plehn. Looks like MMODEM doesnt do a TCTYP REFUSE ????
  1615.  
  1616. In the future, please send bug reports to BUG-MMODEM@MC, not INFO-CPM.
  1617. MMODEM does do TCTYP REFUSE.  I've installed the current version of MMODEM
  1618. on AI.  Let me (not info-cpm) know if the problem still occurs.
  1619.  
  1620.     by the way,another hint/tip: If you are on ITS and want to download a file
  1621.     from the CP/M archive, :COPY it first from the archive to your disk area
  1622.     and then run MMODEM - archives take a LOT LONGER to access
  1623.  
  1624. This is a total waste of time.  The first thing MMODEM does is copy the file
  1625. into memory, so doing a :COPY first makes for a total of two COPY's..
  1626. 13-Mar-83 22:29:00,1133;000000000000
  1627. Date: 13 Mar 1983 2129-PST
  1628. Subject: Re: CP/M to CP/M file transfers
  1629. From: Tom Carnahan <TCARNAHAN@usc-isie.arpa>
  1630. To: Keith Petersen <W8SDZ@mit-mc.arpa>, POURNE@mit-mc.arpa
  1631. cc: Info-Cpm@brl.arpa
  1632. POSTAL-ADDRESS: Tom Carnahan, SMC 1819, NPS, MONTEREY,CA 93940
  1633. Phone: (Home) 408-372-7480 (NPS office) 408-646-2174 AV 878-2174
  1634. In-Reply-To: Your message of 10 March 1983 05:57 EST
  1635. Received: From Usc-Isie.ARPA via smtptcp;  14 Mar 83 10:59 EST
  1636. Received: From Brl.ARPA via smtptcp;  14 Mar 83 16:06 EST
  1637. Received: From brl-gateway.ARPA via smtptcp;  14 Mar 83 16:23 EST
  1638.  
  1639. Keith,
  1640.  
  1641.   This message sparked my interest again.
  1642.  
  1643.    HOW can I get a source listing of MDM705 FTP'ed to me?
  1644.  
  1645. I am vaguely familiar with FTP.   I HAVE ftp'ed to MIT-MC
  1646. and gotten a directory listing of CPM; directory.
  1647.  
  1648.  
  1649. However, I must be doing something wrong...just can't find the right file...or
  1650. I try to FTP and I get garbage.
  1651.  
  1652. If you habve time to respond to this msg, could you include a PHOTO
  1653. of the procedure...I'm still pretty green at it.  We have a TOPS20 
  1654. system here  (prompt: @).
  1655.  
  1656. Greatly appreciative,
  1657. Tom Carnahan
  1658. -------
  1659. 13-Mar-83 23:32:31,996;000000000000
  1660. Date: 13 Mar 83 23:32:31 PST (Sun)
  1661. From: David Allen Gewirtz <UCBARPA.dag@ucb-vax.arpa (David Allen Gewirtz)>
  1662. Subject: SQ zcpr2 files
  1663. Message-Id: <8303140732.AA18567@UCBARPA.ARPA>
  1664. Received: by UCBARPA.ARPA (3.327/3.14)
  1665.     id AA18567; 13 Mar 83 23:32:31 PST (Sun)
  1666. Received: from UCBARPA.ARPA by UCBVAX.ARPA (3.327/3.15)
  1667.     id AA11433; 13 Mar 83 23:30:24 PST (Sun)
  1668. To: info-cpm@brl.arpa
  1669. Received: From Ucb-Vax.ARPA via smtptcp;  14 Mar 83 11:33 EST
  1670. Received: From Brl.ARPA via smtptcp;  14 Mar 83 16:09 EST
  1671. Received: From brl-gateway.ARPA via smtptcp;  14 Mar 83 16:25 EST
  1672.  
  1673. The below files were moved via FTP from MC to the local UNIX system.  
  1674. I tried using the unix usq (xusq.107c) to unsqueeze the files.  
  1675. Usq errors with the message: blah.aqm not a SQueezed file.
  1676.  
  1677. z2rat.wq
  1678. z2rat.wqh
  1679. z2ug.wq
  1680. z2ug.wqh
  1681. z2ug1.wq
  1682. zcpr2.23aqm
  1683. zcpr2.23lqb
  1684.  
  1685. What's up?  This is a 4.1BSD system.  Is there some incompatibility
  1686. with usq or FTP or am I doing something wrong?
  1687.  
  1688. Thanks,
  1689.  
  1690. David
  1691. 14-Mar-83 14:23:42,974;000000000000
  1692. Return-Path: <goldfarb.UCF-CS@Rand-Relay>
  1693. Date: 14 Mar 1983 13:23:42-PST
  1694. From: goldfarb.ucf-cs@rand-relay.arpa
  1695. Subject: PH.C
  1696. To: POURN@mit-mc.arpa
  1697. Cc: INFO-CPM@brl.arpa
  1698. Via:  UCF-CS; 15 Mar 83 0:27-PDT
  1699. Received: From Rand-Relay.ARPA via smtptcp;  15 Mar 83 3:42 EST
  1700. Received: From Brl.ARPA via smtptcp;  15 Mar 83 3:57 EST
  1701. Received: From brl-gateway.ARPA via smtptcp;  15 Mar 83 4:19 EST
  1702.  
  1703. I'll just follow this with a copy of the program in question.  It has 
  1704. enough internal documentation to guide its user; I think 8500 words
  1705. on this rather trivial subject is overkill.
  1706.  
  1707. The program uses the little-known and little-used block transfer 
  1708. mode of PIP which uses XON/XOFF to control transmission.  While this
  1709. is a rudimentary and slow way to handle transmission of binary
  1710. data, it is good enough to bootstrap modem7 or some such program.
  1711.  
  1712. Try it; you'll like it.  It is simple and small, but bigger and
  1713. more verbose is not necessarily better.
  1714.                     Ben
  1715. 14-Mar-83 18:00:01,605;000000000000
  1716. Date: 14 Mar 1983 17:00:01-PST
  1717. From: Ron Broersma <CCVAX.ron@nosc-cc.arpa>
  1718. Reply-to: CCVAX.ron@nosc-cc.arpa
  1719. To: UCBARPA.dag@ucb-vax.arpa, info-cpm@brl.arpa
  1720. Subject: Re:  SQ zcpr2 files
  1721. Received: From Nosc-Cc.ARPA via smtptcp;  14 Mar 83 20:12 EST
  1722. Received: From Brl.ARPA via smtptcp;  14 Mar 83 21:44 EST
  1723. Received: From brl-gateway.ARPA via smtptcp;  14 Mar 83 22:00 EST
  1724.  
  1725. You need to do the FTP in binary (type image) and then convert that
  1726. from ITS format to something that Unix likes.  I've written an ITS to
  1727. Unix converter which does the job nicely. Let me know if you need a copy.
  1728.  
  1729. --Ron
  1730. 14-Mar-83 19:38:00,980;000000000000
  1731. Date: 14 March 1983 19:38 EST
  1732. From: Charlie Strom <CSTROM@mit-mc.arpa>
  1733. Subject: CP/M Plus on Compupro
  1734. To: INFO-CPM@brl.arpa
  1735. Received: From Mit-Mc.ARPA via smtptcp;  14 Mar 83 19:39 EST
  1736. Received: From Brl.ARPA via smtptcp;  14 Mar 83 21:43 EST
  1737. Received: From brl-gateway.ARPA via smtptcp;  14 Mar 83 21:59 EST
  1738.  
  1739. Does anyone know if Godbut is working on an implementation of CP/M Plus
  1740. (aka 3.0) on the Godbout 8080/z80 hardware? I have great difficulty in
  1741. obtaining any meaningful intelligence on what software developments they
  1742. have in the hopper, and am loathe to start from scratch here if
  1743. someone else is further along than wishful thinking!
  1744.  
  1745. Would also of course like to hear about same from G&G or any hackers; perhaps
  1746. we could pool our resources? I just received Plus from DR, so they are
  1747. indeed shipping; I would like to think that I will be able to do something
  1748. other than admire the fancy documentation for the next several months!
  1749.  
  1750.                         Charlie Strom
  1751. 15-Mar-83 01:08:09,987;000000000000
  1752. Return-Path: <goldfarb.UCF-CS@Rand-Relay>
  1753. Date: 15 Mar 1983 00:08:09-PST
  1754. From: goldfarb.ucf-cs@rand-relay.arpa
  1755. Subject: SQ
  1756. To: UCBARPA.dag@ucb-vax.arpa
  1757. Cc: info-cpm@brl.arpa
  1758. Via:  UCF-CS; 15 Mar 83 0:34-PDT
  1759. Received: From Rand-Relay.ARPA via smtptcp;  15 Mar 83 3:45 EST
  1760. Received: From Brl.ARPA via smtptcp;  15 Mar 83 3:57 EST
  1761. Received: From brl-gateway.ARPA via smtptcp;  15 Mar 83 4:20 EST
  1762.  
  1763. Being the individual who hacked xusq107 for 4.1bsd, I can take a  blind
  1764. guess at what your problem is.  But since I know absolutely nothing
  1765. about FTP I may be way off base.
  1766.  
  1767. Usq will fail if you invoke it on a squeezed file that was transferred
  1768. using a 7 bit protocol or doing any newline translation.  Is this what
  1769. you are doing?  I encountered that problem when I used umodem in the
  1770. 'text' mode for handling squeezed files; it went away when I started
  1771. using the 'binary' mode.
  1772.                 Ben Goldfarb 
  1773.                 uucp: ...!duke!ucf-cs!goldfarb 
  1774.                 ARPA: goldfarb.ucf-cs@Rand-Relay
  1775. 15-Mar-83 03:16:00,30531;000000000000
  1776. Date: 15 March 1983 03:16 EST
  1777. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  1778. Subject: RCPMLIST.35
  1779. To: Info-Cpm@brl.arpa
  1780. Received: From Mit-Mc.ARPA via smtptcp;  15 Mar 83 3:17 EST
  1781. Received: From Brl.ARPA via smtptcp;  15 Mar 83 3:35 EST
  1782. Received: From brl-gateway.ARPA via smtptcp;  15 Mar 83 3:46 EST
  1783.  
  1784.  
  1785.  
  1786.    +++ Remote CP/M Software Exchange Systems, List # 35 +++
  1787.  
  1788.                 Last Revised  ---  March 12, 1983
  1789.  
  1790. =============================================================== 
  1791. A  summary  of  all known (and running)  Remote  CP/M  Software 
  1792. Exchange Systems using XMODEM for program transfers.
  1793.  
  1794.           List # 35 revised and updated courtesy of:
  1795.                   Kim Levitt  and  Jud Newell
  1796.  
  1797. Changes  should be sent to TORONTO RCP/M SYSTEM  ONE  (416-231-
  1798. 9538),  TORONTO  RCP/M  SYSTEM TWO (416-231-1262) or  HOLLYWOOD 
  1799. RCP/M RBBS (213-653-6398)
  1800. ===============================================================
  1801. CODE KEY:  (See notes at end of list for more information)
  1802.  
  1803.      Baud Rates:
  1804.                     B1 = PMMI
  1805.                     B2 = 300
  1806.                     B3 = 212A 1200, 300
  1807.                     B4 = Vadic 1200, 300
  1808.                     B5 = 212A 1200, Vadic 1200, 300
  1809.  
  1810.      Alternate Long Distance Services:
  1811.                     LD1 = None 
  1812.                     LD2 = Sprint
  1813.                     LD3 = MCI
  1814.                     LD4 = ITT
  1815.  
  1816.      Call Back:
  1817.                     CB = Call Back,  NCB = No Call Back      
  1818.  
  1819.      Disk  Capacity:
  1820.                     DSK:  (total disk space shown in KB or MB). 
  1821.  
  1822. =============================================================== 
  1823.  
  1824.  
  1825. ---------------------------------------------------------------
  1826.                         NORTHEAST 
  1827. ---------------------------------------------------------------
  1828. Programmer's  Anonymous RCP/M,  (207) 839-2337.  Ralph  Trynor. 
  1829. NCB. 24 Hours. B3;LD1;DSK: 180k. [Gorham, Maine] 
  1830.     Interest  in  new software,  modem programs,  help  and 
  1831.     software  for the Osborne.  (System runs on an  Osborne 
  1832.     1.) Will be adding 22 Mb drive sometime soon.
  1833. ---------------------------------------------------------------
  1834. TORONTO ONTARIO RCP/M SYSTEM ONE,  (416) 231-9538,  Jud Newell. 
  1835. NCB. 24 hrs. B5;LD1;DSK: 10mb. Hard. [Toronto, Ontario, Canada]
  1836.     Interest  in New and New Releases of  Software.  Online 
  1837.     programs  exceed  1000,  and online program catalog  of 
  1838.     6000  on request programs available.  (System  formerly 
  1839.     named MISSISSAGUA RCPM.)
  1840. (SYSTEM  ONE as of 03/01/83 is no longer a  public  system,  as 
  1841. access is now restricted to fee-paying members.)
  1842. ---------------------------------------------------------------
  1843. TORONTO ONTARIO RCP/M SYSTEM TWO,  (416) 231-1262,  Jud Newell, 
  1844. NCB. 24 hrs. B1;LD1;DSK: 10mb. Hard. [Toronto, Ontario, Canada] 
  1845.     System supports extensive database and help systems, as 
  1846.     well as over 2mb of BASIC utilties/games/etc. 
  1847. (SYSTEM TWO is still a public system.)
  1848. ---------------------------------------------------------------
  1849. MISSISSAUGA ONTARIO HUG-RCP/M,  (416) 231-4174,  Toronto  Heath 
  1850. Users   Group.   NCB.   1800-0600   wkdys,   24   hrs   wkends. 
  1851. B1;LD1;DSK:2+mb. [Toronto, Ontario, Canada] 
  1852. ---------------------------------------------------------------
  1853. Mid-Suffolk RCP/M and Data Exchange,  (516) 751-5639, Al Klein, 
  1854. NCB.  1700-0900 weekdays,  1700 Friday - 0900 Monday. B2;LD2,3; 
  1855. DSK:400k.  [Long Island, NY]
  1856.     Sysop  interested in new programs for all micros.  Note 
  1857.     Phone will be answered voice 0900-1700 Monday-Friday. 
  1858. ---------------------------------------------------------------
  1859. Johnson  City,  NY SJBBS,  (607) 797-6416,  Charles  ---.  NCB.  
  1860. Eves., etc. B2,LD1,DSK:2mb. [Upstate New York]
  1861. ---------------------------------------------------------------
  1862. SuperBrain RCPM,  (617) 862-0781,  Paul Kelly.  NCB.  1900-0700 
  1863. wkdys,  24 hrs wkends.  B5;LD2,3,4;DSK:300k.  [Lexington,  MA:] 
  1864.     Special interest in Superbrain-adapted CP/M programs.
  1865. ---------------------------------------------------------------
  1866. Rochester RBBS,  (716) 524-1785,  Arnie McGall.  NCB.  24  hrs. 
  1867. B5;LD2,3,4;DSK:2.4mb. [Upstate New York] 
  1868. ---------------------------------------------------------------
  1869. Bearsville Town SJBBS,  (914) 679-6559,  Hank Szyszka. NCB.  24 
  1870. hrs. B1;LD1;DSK:4mb. [Upstate New York]
  1871. ---------------------------------------------------------------
  1872. Woodstock RCP/M RBBS.  (914) 679-8734.  John Doak. NCB. 24 Hrs. 
  1873. (Machine   answers  after  3rd   ring.)   B3;LD2,3,4;DSK:2.8mb. 
  1874. [Woodstock, New York]
  1875.     Heath H8 System. Sysop interested in all CP/M software, 
  1876.     plus  ham  radio software.  CPMUG and RCPM  library  is 
  1877.     available.   Baud  rates in addition to 212A  1200/300: 
  1878.     75, 110, 134, 150 and 450.
  1879. ---------------------------------------------------------------
  1880. Brewster RBBS, (914) 279-5693, Paul Bosshold & Carl Erhorn. CB. 
  1881. 9pm-8am Weekdays, 24 hour weekends. B1;LD1;DSK:500k. [Downstate 
  1882. New York] 
  1883.     (S-100 based. General CP/M software)
  1884. ---------------------------------------------------------------
  1885.                          EAST CENTRAL 
  1886. ---------------------------------------------------------------
  1887. Flanders,  NJ.  (201)  584-9227,  Ken Stritzel.  NCB.  24  hrs, 
  1888. B3(0700   Monday-1700   Friday);B1(1700  Friday-0700   Monday); 
  1889. LD2;DSK: 26mb Hard. [Northern New Jersey] 
  1890.     Emphasis on new programs and recent updates of standard 
  1891.     programs
  1892. ---------------------------------------------------------------
  1893. Paul Bogdanovich's RBBS, (201) 747-7301, Paul Bogdanovich, NCB. 
  1894. 1800-2300  wkdys,   0800-2300  wkends.   B1;LD1;DSK:1mb.   [New 
  1895. Jersey]
  1896. ---------------------------------------------------------------
  1897. RIBBS  of Cranford,  New Jersey (201) 272-1874,  Bruce  Ratoff. 
  1898. NCB. 24 hrs. B1 (B3 on request); LD2,3; DSK: 3mb.  [New Jersey] 
  1899.     General   CP/M  software;    Bulletin  Board  of  SIG/M 
  1900.     (Special  Interest Group/Microcomputers,   ACGNJ)  Will 
  1901.     soon have 75Mb on-line!
  1902. ---------------------------------------------------------------
  1903. The C-Line,  (201) 625-1797,  David Fiedler. NCB. Mon-Fri 2000-
  1904. 0900, 24 hrs weekends. B1; LD2,3?,4?; DSK: 2 Mb. [Northwest NJ]
  1905.     Running  CP/M under MicroShell.  Special interest UNIX, 
  1906.     UNIX-like systems,  C software.  On-line instruction in 
  1907.     UNIX and C is planned.
  1908. ---------------------------------------------------------------
  1909. Allentown RBBS/RCPM System,  (215) 398-3937, Bill Earnest. NCB. 
  1910. 24 hrs. B1;LD2,4;DSK:10mb Hard. [E. Pennsylvania] 
  1911.     General  CP/M software.  Bulletin board of  the  Lehigh  
  1912.     Valley Computer Club and SIG/M Group.
  1913. ---------------------------------------------------------------
  1914. Laurel,  MD. RCPM/RBBS, (301) 953-3753, Wayne Hammerly. NCB. 24 
  1915. hrs. B2;LD2;DSK: 64mb hard. [Washington DC Area]
  1916.     Now  running on Molecular Super micro  32,  with  three 
  1917.     phone lines for remote use.  Note numbers 953-3753,3754 
  1918.     are 300 baud, 953-3755 is 1200 baud.  
  1919. ---------------------------------------------------------------
  1920. BHEC RBBS/RCPM,  (301) 661-4447,  Walt Jung,  Charlie  Schnepf, 
  1921. Harry Barley.  NCB.  6pm-9:30am Daily,  9pm Thu-9:30am Fri, 5pm 
  1922. Sat-9:30am Mon. B2;LD2,3,4;DSK:10mb Hard. [Baltimore, MD]
  1923. ---------------------------------------------------------------
  1924. PROVIDENCE RCP/M, (401) 751-5025. Mark Rippe. CB. 1000 Sat-2200 
  1925. Sun. B2;LD2,3;DSK:1.2mb [Providence, R.I.]
  1926. ---------------------------------------------------------------
  1927. RLP RCP/M, McLean VA, (703) 524-2549, Bob Plouffe. NCB. 24 hrs. 
  1928. B2;LD2,3;DSK:2.7mb.  [Wash DC Area]
  1929.     Running CBBS for messages.  
  1930. ---------------------------------------------------------------
  1931. Arlington RCPM/DBBS of Virginia,  (703) 536-3769,  Eliot Ramey, 
  1932. NCB.  2200-1500 weekdays, random weekends, B1;LD2,3,4;DSK:800k. 
  1933. [Arlington, Virginia] 
  1934.     Recent updates and new releases. 
  1935. ---------------------------------------------------------------
  1936. OxGate-007 Grafton VA,  (804) 898-7493,  Dave Holmes.  NCB.  24 
  1937. hrs. B2;LD2;DSK:200k. [Tidewater, VA.]  
  1938.     Carries  CP/M,  TRS-80  &  Apple  software;  plans  for 
  1939.     setting  up a dual system (on one line) with an  LNW-80 
  1940.     as well as the CP/M computer. Active as bulletin board.
  1941. ---------------------------------------------------------------
  1942. State College,  PA. CUG-NODE, (814) 238-4857, Joe Shannon. NCB. 
  1943. 24 hrs. B2;LD1;DSK:3mb. [Pennsylvania]
  1944. ---------------------------------------------------------------
  1945.                             MIDWEST 
  1946. ---------------------------------------------------------------
  1947. Logan Square RCPM,  (312) 252-2136,  Earl Bockenfeld.  NCB.  24 
  1948. hrs. B1;LD2,3,4;DSK:1mb. [Chicago]
  1949.     Special  interest in recent releases and developing on-
  1950.     line  databases,  with  daily change of software  on  B 
  1951.     drive
  1952. ---------------------------------------------------------------
  1953. Palatine  RCPM,  (312) 359-8080,  Tim  Cannon.  NCB.  1800-0600 
  1954. wkdys,  24 hrs weekends. B1 (Thursday 1800-Sunday 1800),B4 (All 
  1955. other times);LD2,3,4;DSK:4.8mb. [Chicago] 
  1956.     Emphasis on very recent releases,  updates to  existing 
  1957.     programs and BDS C programs. Disks on B:;C:; and D: are 
  1958.     rotated with a second set daily. 
  1959. ---------------------------------------------------------------
  1960. IBM-PC BBS, (312) 647-7636, Gene Plantz. NCB. 1800-0700 wkdys & 
  1961. 24 hrs wkends. B5;LD2,3,4;DSK:200k. [Niles: Chicago area]
  1962. ---------------------------------------------------------------
  1963. AIMS,  Hinsdale, Ill. (312) 789-0499, Mark Pulver. NCB. 24 hrs. 
  1964. B1;LD2,3,4;DSK: 10mb Hard. [Chicago area]
  1965. ---------------------------------------------------------------
  1966. NEI RCPM System,  (312) 949-6189, Chuck Witbeck. NCB. 1800-0100 
  1967. wkdys, 1200-0100 wkends. B1;LD2,3,4;DSK:2mb. [Chicago area] 
  1968.     Main emphasis is on communications programs,  including 
  1969.     versions adapted to non-standard CP/M systems.
  1970. ---------------------------------------------------------------
  1971. Technical  CBBS,  (313) 846-6127,  Dave  Hardy.  NCB.  24  hrs. 
  1972. B1;LD2,3,4;DSK:3mb. [Detroit area] 
  1973.     Emphasis on very recent releases.  RCPM sysops desiring 
  1974.     access  to  the passworded RCPM Clearing  House  system 
  1975.     should leave a msg on TCBBS. Active message system
  1976. ---------------------------------------------------------------
  1977. Royal Oak CP/M,  (313) 759-6569, Keith Petersen. CB. 24 hrs. B1 
  1978. (B5  available on request);LD2,3,4;DSK:10  mb.  Hard.  [Detroit 
  1979. area] 
  1980.     Emphasis  on new programs & recent updates of  standard 
  1981.     progs.
  1982. ---------------------------------------------------------------
  1983. Southfield,  MI, RBBS/RCPM, (313) 559-5326, Howard Booker. NCB. 
  1984. 24 hrs. B2;LD2,3,4;DSK: 2.7mb. [Michigan] 
  1985.     Special  interest  in BDSC  programs,  doc.  files  and 
  1986.     recent updates of standard programs.
  1987. ---------------------------------------------------------------
  1988. MINICBBS/Sorcerer's  Apprentice  Group,   (313)  535-9186,  Bob 
  1989. Hageman. NCB. 24 hrs. B1;LD2,3,4;DSK: 500k. [Detroit,Michigan] 
  1990.     Running  on  an  Exidy Sorcerer.  Special  interest  in 
  1991.     adapting   CP/M  software  and  assorted  hardware   to 
  1992.     Sorcerer systems.
  1993. ---------------------------------------------------------------
  1994. OZZY #1 - Osborne RBBS/RCPM of Milwaukee,  (414) 342-4599.  Jim 
  1995. Ryan.   NCB.  Mon-Thu 11pm-8am,  Fri-Sat 8pm-12pm, Sun 8pm-8am. 
  1996. B2; LD2,3,4; DSK: 416k. [Milwaukee, Wisconsin]
  1997.     Special Interest in Osborne Software and Info.   System 
  1998.     software  is first generation and does have some  bugs.  
  1999.     Be patient. New hours since RCPM-034.LQT.
  2000. --------------------------------------------------------------    
  2001. Fort Fone File Folder, (414) 563-9932, Al Jewer, Shawn Everson, 
  2002. Ron Fowler.  NCB. 24 hrs. B1;LD1;DSK: 20mb Hard. [Ft. Atkinson, 
  2003. Wisconsin] 
  2004. ---------------------------------------------------------------
  2005. Mike's RCP/M System, (414) 647-0903, Mike Wesolowski. NCB. Mon-
  2006. Fri 6pm-6am,  24 hrs weekends & holidays. B2;LD2,3,4;DSK: 700k. 
  2007. [Milwaukee, Wisconsin]
  2008. ---------------------------------------------------------------
  2009. Cincinnatti RBBS, (513) 489-0149, Henry Deutsch. NCB. 1800-0600 
  2010. daily. B1;LD2;DSK: 1.8mb. [Ohio] 
  2011.     Specializes in Telecommunications. 
  2012. ---------------------------------------------------------------
  2013. West Carrolton RCP/M,  (513) 435-5201, Rich Malafa & Bob Drake. 
  2014. NCB.24 hrs. B1;LD2;DSK:11mb Hard. [Dayton, OH]
  2015. ---------------------------------------------------------------
  2016. Columbus CBBS,  (614) 272-2227,  (268-CBBS), John Walpole. NCB. 
  2017. 24 hrs. B1;LD2,3,4;DSK: 300k. [Ohio] 
  2018.     Now   running  MP/M,   on  a  Tarbell  SD   controller; 
  2019.     occasional slow response means the sysop is also  using 
  2020.     the  system;  special interest in BDS-C programs.  Also 
  2021.     active as a bulletin board.
  2022. ---------------------------------------------------------------
  2023. Pickerington RBBS,  (614) 837-3269.  Greg Bridgewater. NCB. ??? 
  2024. Schedule. B2;LD2;DSK: 1mb. Running TRS-80 with Omikron. [Ohio]
  2025. -------------------------------------------------------------
  2026. Mission,   KA,  (913)  362-9583,  Dave  Kobets.  NCB.  24  Hrs. 
  2027. B3;LD2;DSK: 2mb. [Kansas]
  2028. ---------------------------------------------------------------
  2029. AlphaNet RCP/M RBBS,  (913) 843-4259. Larry Miller. NCB.  1800-
  2030. 0900  daily.    B2;LD3;DSK:   700k.   B  drive  changes  daily. 
  2031. [Lawrence, Kansas]
  2032.     Superbrain w/Hayes Smartmodem. General CP/M Software. 
  2033. ---------------------------------------------------------------
  2034.                              SOUTH 
  2035. ---------------------------------------------------------------
  2036. NACS/UAH RBBS/RCPM,  (205) 895-6749,  Don Wilkes.  CB.  24 hrs. 
  2037. B1;LD1;DSK: 700k  [Huntsville, Alabama] 
  2038.     Run for N.  Ala.  Computer Soc.  at U. of Ala.; general 
  2039.     CP/M software. 
  2040. ---------------------------------------------------------------
  2041. REDSTICK RCPM,  (504) 766-8962,  Phil Cary,  NCB.  W'days 2200-
  2042. 1900, w'ends 2200-0900.  B1;LD2;DSK: 2.3mb. [Baton Rouge, La.] 
  2043.     Message  system "REDSTICK" written  by  sysop.  General 
  2044.     software. Special Interest in CB-80.  
  2045. ---------------------------------------------------------------
  2046.                       SOUTHERN CALIFORNIA 
  2047. ---------------------------------------------------------------
  2048. Los Angeles RCP/M,  (213) 296-5927,  Bob McCown.  NCB.  24 hrs. 
  2049. B1;LD2,3,4;DSK: 2.5mb. [West. L.A.] 
  2050.     System  features  catalog of the  latest  CP/M,  Apple, 
  2051.     Atari, TRS-80 and IBM PC software. 
  2052. ---------------------------------------------------------------
  2053. Granada Engineering Group RCP/M,  (213) 360-5053,  Webber Hall. 
  2054. NCB. 24 Hrs. B2;LD2,3,4;DSK: 1mb. [Granada Hills, Ca.] 
  2055.     Special  interest in CP/M utilities,  assembly language 
  2056.     programs, hardware/software technical information. 
  2057. ---------------------------------------------------------------
  2058. The MOG-UR'S HBBS,  (213) 366-1238, Tom Tcimpidis. NCB. 24 hrs. 
  2059. B3;LD2,3,4;DSK: 2mb. [San Fernando valley, LA Area]
  2060.     Disk cap. now 2MB. 450 Baud supported (Bell 103 std).
  2061.     New version of system on-line as of Feb. 7 with new
  2062.     features and enhancements. CP/M and HDOS software is
  2063.     rotated on a monthly basis.
  2064. ---------------------------------------------------------------
  2065. G.F.R.N.  Data  Exchange (RBBS),  (213) 541-2503,  Skip Hansen. 
  2066. NCB. 24 hrs. B5;LD2,3,4;DSK: 2.4mb. [Palos Verdes, CA] 
  2067.     Standard  CP/M  s'ware  with special  interest  in  ham 
  2068.     radio-related programs.  Soon (with MP/M) will also  be 
  2069.     reachable thru 450 mhz radio. 
  2070. ---------------------------------------------------------------
  2071. Pasadena  RBBS,  (213)  577-9947,  Rich  Berg.  NCB.  1600-0700 
  2072. weekdays,  24 hrs weekends.  B1;LD2,3,4;DSK:  1.5mb. Heath H89. 
  2073. [Los Angeles Area]
  2074. ---------------------------------------------------------------
  2075. HOLLYWOOD RCPM/RBBS.  (213) 653-6398.  Kim Levitt. NCB. 24 hrs. 
  2076. (Phone not answered when in use,  keep trying...)  B2; LD2,3,4; 
  2077. DSK:  382k.  (Drive B:  changed frequently,  leave requests for 
  2078. off-line software on RBBS.)  [Los Angeles, CA]
  2079.     Special Interests: CP/M utilities, data communications, 
  2080.     videographics, applications for entertainment industry.  
  2081.     System is a Kaypro II with Hayes Smartmodem 300.
  2082. >>> THIS SYSTEM IS ALSO A COLLECTION POINT FOR UPDATES TO THIS
  2083.     LIST. PLEASE SEND THE INFO. AS A FILE OR MESSAGE TO SYSOP.
  2084. --------------------------------------------------------------
  2085. Pasadena  CBBS,   (213)  799-1632,   Dick  Mead.   NCB.  24hrs. 
  2086. B1;LD2,3,4;DSK: 8.3mb Hard.  [Los Angeles Area] 
  2087.     Also active as bulletin board. General CP/M software.) 
  2088. ---------------------------------------------------------------
  2089. BARSTOW RCP/M,  (619) 256-3914,  Bill Wood. NCB. 24 hrs Monday-
  2090. Friday, off 0900-1800 Sat/Sun.  B1/B5;LD1;DSK: 4.9mb. [Barstow, 
  2091. California]
  2092.     General  interest CP/M Public Domain  Software.    Note 
  2093.     System  Power is off until Modem Carrier  Lock.   (does 
  2094.     not  recognize  CR's for 15 seconds after  lock,  while 
  2095.     System auto boots.
  2096. --------------------------------------------------------------- 
  2097. San  Diego RCPM,  (619) 273-4354,  Brian Kantor.  NCB.  24 hrs. 
  2098. B5;LD2,3,4;DSK: 2.4mb. [San Diego, CA]
  2099. ---------------------------------------------------------------
  2100. G.F.R.N.  Data Exchange (RBBS),  Garden Grove,  (714) 534-1547, 
  2101. Doug Laing, NCB. 24 hrs, B5;LD2;DSK: 5mb. [Garden Grove, Ca.]
  2102.     Special   interest  in  amateur  radio  and   apple/cpm 
  2103.     software, also general interest CP/M. 
  2104. ---------------------------------------------------------------
  2105. AnaHug RCPM/CBBS, (714) 774-7860, Bob Mathias, John Secor. NCB. 
  2106. 24 hrs. B2;LD2,3,4;DSK: 10mb Hard.    [Ahaheim, Ca.]
  2107.     Special interest in hobby computing,  ham,  electronics 
  2108.     hobbyists. 
  2109. -----------------------------------------------------------------
  2110. Thousand Oaks Technical RCP/M, (805) 492-5472, Trevor Marshall. 
  2111. NCB.   24 hrs.   B3, (also 600 baud, baud rate set at log on or 
  2112. with NEWBAUD); LD1; DSK: 2mb. [Thousand Oaks, CA]
  2113. ---------------------------------------------------------------
  2114. Simi RCP/M,  (805) 527-2219,   Pete Mack,   NCB. 1900-2300 PST, 
  2115. Mon-Fri,  24  hrs  on  weekends.  (300-600  PMMI  rates);  LD1;
  2116. DSK: 10mb. [Simi Valley, Ca.]
  2117.     Mostly  BDS C programs and occasional new  releases  of 
  2118.     general interest. Disk capacity now 10 mb., another 10 mb
  2119.     due to be added in April.
  2120. --------------------------------------------------------------
  2121. CP/M-Net(tm),  (805)  527-9321,  Kelly  Smith.  NCB.  1900-2300 
  2122. (Pacific) Mon-Fri, 1900 Fri to 0700 Mon. B1;LD2;DSK: 20mb Hard.  
  2123. [Simi Valley, CA] 
  2124. ---------------------------------------------------------------
  2125.                       NORTHERN CALIFORNIA 
  2126. ---------------------------------------------------------------
  2127. OxGate-001 Saratoga,  (408) 867-1243, Paul Traina, NCB. 24 hrs. 
  2128. B5;LD2,3,4;DSK: 2.4mb. [South SF Bay Area]
  2129.     Special Interest in latest releases,  also functions as 
  2130.     west coast "Sysop's Clearinghouse". (OxNet hub) 
  2131. ---------------------------------------------------------------
  2132. OxGate-002 Milpitas,  (408) 263-2588,  Mel Cruts,  CB,  24 hrs.  
  2133. B1;LD2,,3,4;DSK 1.2mb. [South SF Bay Area].
  2134. ---------------------------------------------------------------
  2135. Cro'sNEST  RCP/M -- DataTech node 004,  (408) 732-2433,  Robert 
  2136. Kuhman. NCB. 24 hrs.  B1;LD2,3,4;DSK: 1mb. [South SF Bay Area] 
  2137.     CROMEMCO system two based.  Specializing in CP/M, CDOS, 
  2138.     and  CROMIX  software.  Many new CDOS  programs  (never 
  2139.     before released to public domain) are available.
  2140. ---------------------------------------------------------------
  2141. Silicon Valley Interchange -- OxGate-004.   (408) 732-9190,  Ed  
  2142. Svoboda.   NCB.  7:45am-11:00pm  7days/week.    B2;LD2,3,4;DSK:  
  2143. 2.7mb.  [South SF Bay Area] 
  2144.     APPLE  ][  CP/M  based.  Specializing  in  very  recent 
  2145.     releases,  telecommunications,  and  Apple CP/M  prgms. 
  2146.     Note: additional 256k installed.
  2147. ---------------------------------------------------------------
  2148. RCP/M  Sunnyvale,  (408) 730-8733,  Eric  Sarti.  NCB.  3:30pm-
  2149. 10:00pm 7days/wk.  B2;LD2,3,4;DSK:  256k,  APPLE ][ CP/M based. 
  2150. [South SF Bay Area]
  2151. ---------------------------------------------------------------
  2152. DataTech Network Headquarters System,  (415)  595-0541,  Edward 
  2153. Huang.  NCB.  24 hrs.  B5;LD2,3,4;DSK:  200k.  [ Box  290,  San 
  2154. Carlos, CA 94070 S.F. Bay Area] 
  2155.     Heath/Zenith based.  Special interest in utilities  and 
  2156.     communications as well as general software. 
  2157. ---------------------------------------------------------------
  2158. Piconet RBBS-RCP/M,  (415) 965-4097,  Byron McKay. NCB. 24 hrs. 
  2159. B1;LD2,3,4;DSK 2.4mb.  Sponsored by PicoNet CP/M group. [SF Bay 
  2160. Area] 
  2161. ---------------------------------------------------------------
  2162. RBBS of Marin County,  (415) 383-0473,  Jim Ayers.  NCB. Eves & 
  2163. nites wkdys, 24 hrs wkends. B1;LD2,3,4;DSK: 1mb. [SF Bay Area]
  2164. ---------------------------------------------------------------
  2165. Larkspur  RBBS/RCPM,  (415)  461-7726,  Jim  C.  NCB.  24  hrs. 
  2166. B1;LD2,3,4;DSK: 2mb. [SF Bay Area]
  2167. ---------------------------------------------------------------
  2168. Napa Valley RBBS/RCPM,  (707) 257-6502,  Dave Austin.  NCB.  24 
  2169. hrs. B1;LD1;DSK: 600k. [Napa, CA] 
  2170.     Supports TRS,  Apple,  Osborne, Atari and CP/M systems. 
  2171.     Also interested in amateur radio and net info.
  2172.     Phone number changed since RCPM-034.LQT
  2173. ---------------------------------------------------------------
  2174.                           SOUTHWEST 
  2175. ---------------------------------------------------------------
  2176. Dallas RCP/M CBBS,  (214) 931-8274,  Dave Crane. NCB. 1800-0800 
  2177. Mon-Fri,   24  Hrs  Sat/Sun/holidays.   B1;LD2,3,4;DSK:  2.4mb. 
  2178. [Dallas, Texas] 
  2179.     Special  interest  in programs for and  discussions  of 
  2180.     application   of  micros  to  science  &   engineering, 
  2181.     especially earth sciences. 
  2182. ---------------------------------------------------------------
  2183. Boulder,  Colorado RCPM, (303) 499-9169, Jack Riley. NCB. 1900-
  2184. 2230  weekdays,  1200-2230 weekends.  B1;LD2,3;DSK:  32mb Hard. 
  2185. [Boulder, Colorado]
  2186. ---------------------------------------------------------------
  2187. Colorado Springs RIBBS,  (303) 634-1158,  Richard Evers (Arvada 
  2188. Electronics).  NCB.   24 hrs.   B3;LD2,3;DSK:  2.4mb. [Colorado 
  2189. Springs, Co].
  2190. ---------------------------------------------------------------
  2191. Pinecliffe  RMP/M  RBBS,  (303)  642-3034,  Craig  Baker.  NCB. 
  2192. Irregular hrs, 24 hrs. soon, (try anytime). B3;LD2,3;DSK: 16mb. 
  2193. [Pinecliffe, Colorado] 
  2194.     Login  by using "LOGIN" program.  On-line databases  on 
  2195.     such topics as nuclear power, Retrieval system, MP/M-II 
  2196.     mods, interest in active discussions.
  2197. ---------------------------------------------------------------
  2198. Denver  CUG-NODE,   (303)  781-4937.  ?  Sysop.  NCB.  24  hrs. 
  2199. B1;LD2,3;DSK: 1mb. [Denver, Colorado]
  2200. ---------------------------------------------------------------
  2201. Lakewood  RCPM/RBBS,  (303)  985-1108.  Gary  Shaffstall.  NCB. 
  2202. 24hrs. B3;LD2,3;DSK: 12.86 MB. on A:-D:. [Denver, Colorado]
  2203.     General interests in CP/M, MP/M, CP/NET, CP/NOS.
  2204. ---------------------------------------------------------------
  2205. Satsuma RCP/M,   (713) 469-8893.   Charlie Sanborn.  NCB. 1400-
  2206. 2400 CST. B3;LD2,3;DSK: 10mb hard.  [Houston, TX].
  2207.     No Message system,  either active or planned.  Software 
  2208.     exchange only. Heath H-8 with Hayes Smartmodem 1200.
  2209. ---------------------------------------------------------------
  2210. El Paso Texas Apple UG RBBS/RCPM,  (915) 533-2202. NCB. 24 hrs. 
  2211. B2;LD2,3;DSK: 3.5mb. [El Paso, Texas]
  2212.     Runs  on  a  3.5Mb  segment of  North  Star  Hard  Disk 
  2213.     (multiuser system.) General, APPLE, and BDS C software.
  2214. ---------------------------------------------------------------
  2215. El Paso Texas RCPM, (915) 598-1668, Sigi Kluger. NCB. 1700-0600 
  2216. weekdays, all day w'ends. B1;LD2,3;DSK:1.3mb. [El Paso, Texas]
  2217.     XMODEM MAST.CAT for list of available files.  Diskettes 
  2218.     rotated every 2 days. 
  2219. ---------------------------------------------------------------
  2220.                            NORTHWEST 
  2221. ---------------------------------------------------------------
  2222. Olympia  RCPM,  (206)  357-7400.  Tim  Linehan.  NCB.  24  hrs. 
  2223. B1;LD1;DSK: 16mb. Hard. [Olympia, Washington]
  2224.     Phone number changed since RCPM-034.LQT.
  2225. ---------------------------------------------------------------
  2226. Yelm RBBS & CP/M,  (206) 458-3086,  Dave Stanhope.  CB. 24 hrs. 
  2227. B1;LD1;DSK: 250k. [Olympia, Washington]
  2228. ---------------------------------------------------------------
  2229. Edmonton  RCPM,  (403) 454-6093,   Dave McCrady,  NCB.  24  hrs 
  2230. (somewhat  sporadic  ..  not  answered when system  in  use  by 
  2231. SYSOP), B5;LD1;DSK: 3.8mb. [Edmonton, Alberta, Canada]
  2232.     General CP/M software;some HDOS,  Apple and TRS80 stuff 
  2233.     available as well.
  2234. ---------------------------------------------------------------
  2235. Helena Valley RBBS/RCPM,  (406) 443-2768. Marion thompson. NCB. 
  2236. 8am-8pm Monday-Friday,  intermittent on weekends.   B3;LD1;DSK: 
  2237. 1.2mb. [Helena, Montana]
  2238.     Special  Interest  in  CAI,   S-100  and  general  CP/M 
  2239.     software. Also CPA related spread sheet programs.
  2240. ---------------------------------------------------------------   
  2241. Chuck Forsberg's RCPM, (503) 621-3193, NCB. 24 hrs. B5;LD2;DSK: 
  2242. ?. [Oregon]
  2243. ---------------------------------------------------------------
  2244. DOCTOR DOBB'S CP/M EXCHANGE RCPM,   (503) 758-8408.  Gene Head. 
  2245. CB. 2100-0900 weeknites.  B2;LD1;DSK: 336k.  [Corvallis, Or.]
  2246.     Interested  in  helping get new modems up and  running, 
  2247.     and   magazine  (DDJ)  input   from   readers.(Letters, 
  2248.     articles,  listings, etc).  People phone (503) 758-0279 
  2249.     0900-2100 daily.  
  2250. --------------------------------------------------------------
  2251. Beaverton,   Oregon  RCPM,  (503)  641-7276,  (641-RCPM),  Dave 
  2252. Morgan. NCB. 24 hrs. B1;LD2;DSK: 26mb Hard. [Oregon]
  2253.     Interest in very recent releases and computer art. 
  2254. ---------------------------------------------------------------
  2255. Frog Hollow CBBS/RCPM,  (604) 873-4007, David Bowerman. NCB. 24 
  2256. hrs. B1;LD1;DSK: 1.2mb. [Vancouver, BC, Canada] 
  2257. ---------------------------------------------------------------
  2258. Anchorage RCPM,  (AMS), (907) 337-1984, Thomas Hill. NCB. 11pm-
  2259. 9am 7 days/wk. B2;LD1;DSK:12.4mb. Hard. [Anchorage, Alaska] 
  2260.     Sysop  interested in "just about everything".  Has text 
  2261.     files on articles written for Lifelines on C:  user  6. 
  2262.     Voice contact at same phone, 9am to about 7pm. 
  2263. ---------------------------------------------------------------
  2264.                     GENERAL NORTH AMERICA 
  2265. ---------------------------------------------------------------
  2266. CP-MIG.  On MicroNet, type 'R CP-MIG' or GO PCS-47, Sysops Dave 
  2267. Kozinn,  Tom Jorgenson & Charlie Strom are arranging to have MN 
  2268. carry  much  of  the  new CPMUG  and  SIG/M  software,  plus  a 
  2269. newsletter and a CP/M-oriented CBBS. 
  2270. ---------------------------------------------------------------
  2271.                           OVERSEAS
  2272. ---------------------------------------------------------------
  2273. SOFTWARE TOOLS RCPM,  61-2-997-1018 (Australia),  Bill  Bolton. 
  2274. NCB.  24hrs.  300  baud CCITT V21 standard.  LD1;  DSK:  4.8Mb. 
  2275. [Sydney, Australia]
  2276.     Special interest in 'C' programs.
  2277. ---------------------------------------------------------------
  2278. MICOM  CBBS,  61-3-762-5088  (Australia),  Peter  Jetson.  NCB. 
  2279. 24hrs. 300 baud CCITT V21 standard. LD1; DSK: 500k. [Melbourne, 
  2280. VIC, Australia]
  2281.     (as of Jan'83, CBBS only, no XMODEM)
  2282. ---------------------------------------------------------------
  2283.  
  2284. --------------------------------------------------------------- 
  2285. NOTES:
  2286.  
  2287. 1. Call-back systems are those where a computer and real people
  2288.    share the same telephone line.   To contact the people, just
  2289.    dial  &  let the phone ring until you  get  an  answer.   To
  2290.    contact  the  computer:   (1) dial,  (2) let the phone  ring
  2291.    once,  (3) hang up just before the 2nd ring,  & (4) re-dial. 
  2292.    Call  back systems are noted as CB,  systems  not  requiring 
  2293.    call back are noted as NCB.
  2294.  
  2295. 2. Baud rates are shown as Bx, where x is a code indicating:
  2296.      1= PMMI rates (110-710 baud) ; 2 = 300 baud only
  2297.      3= Bell 212A and 300 baud    ; 4 = Vadic 3451 and 300 Baud
  2298.      5= Bell 212A, Vadic 3451 and 300 Baud.
  2299.    Note  that  the  212A/Vadic  1200 baud  modems  may  not  be   
  2300.    compatable with yours. Most of the above systems are   using 
  2301.    Vadic  3451 Triple modems,  compatable with both Bell    and 
  2302.    Vadic  Standard.  Sign  on  the first time at  300  baud  to   
  2303.    determine  the  system capabilities.  Note also that  PMMI's   
  2304.    can sometimes be used over 300 baud with 1200 baud  systems.   
  2305.    PMMI baud rates are: 110, 300, 450, 600, 710.
  2306.  
  2307. 3. Alternate Long Distance servies are shown as LDx, where x is 
  2308.    a code indicating:
  2309.      1= None   2=Sprint   3=MCI   4=ITT
  2310.    Whether  a  program  exchange  system is  accessible  by  an   
  2311.    a.l.d.s. (=alternative long-distance service) should be con-   
  2312.    sidered when planning to modem over long  programs.  Charges   
  2313.    on  SPRINT,  ITT/CITYCALL  and MCI are 50-60% of  Ma  Bell's   
  2314.    regular long distance rates.
  2315.  
  2316. 4. Disk  capacity is shown for reference.   Note that disks not 
  2317.    noted as HARD may be any combination of floppies,  and  that 
  2318.    hard  disks  are generally divided into a number of  logical 
  2319.    disks.   Check  the system documentation for  exact  details 
  2320.    when logging on.
  2321.  
  2322. 5. All times listed are local time.
  2323.  
  2324. 6. NEW SYSOPS: When messaging Jud or Kim with information about
  2325.    your system, please include the following data:
  2326.  
  2327.    a. Your System's Name (& BBS type)
  2328.       (examples: Joe Blow's RBBS, Home Town RCPM/CBBS)
  2329.    b. Your System's area code and phone number.
  2330.    c. Your Name.
  2331.    d. Call Back/No Call Back.
  2332.    e. Hours of operation.
  2333.    f. Baud rates supported.
  2334.    g. Alternative Long Distance Services that can call you.
  2335.       (Note that you don't have to subscribe to any, just list
  2336.        ones that can call your area.   If you don't know, call
  2337.        the local  MCI, SPRINT and/or ITT  offices or their 800
  2338.        number and ask 'em.)
  2339.    h. Your on-line storage capacity. (Total KB or MB).
  2340.    i. Your location. (City, State; State, Area)
  2341.    j. Special features and interests, hardware notes, etc.
  2342.  
  2343. It  will  greatly  assist  Jud and Kim if  you  can  modem  the 
  2344. information  in  a format similar to those already existing  in 
  2345. the current listing.
  2346.  
  2347.     This list revised by Kim Levitt on 03/12/83.
  2348. 15-Mar-83 05:07:00,651;000000000000
  2349. Date: 15 March 1983 05:07 EST
  2350. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  2351. Subject:  CP/M Plus on Compupro
  2352. To: CSTROM@mit-mc.arpa
  2353. cc: INFO-CPM@brl.arpa
  2354. In-reply-to: The message of 14 Mar 1983 19:38 EST from Charlie Strom <CSTROM at mit-mc.arpa>
  2355. Received: From Mit-Mc.ARPA via smtptcp;  15 Mar 83 5:08 EST
  2356. Received: From Brl.ARPA via smtptcp;  15 Mar 83 5:34 EST
  2357. Received: From brl-gateway.ARPA via smtptcp;  15 Mar 83 5:43 EST
  2358.  
  2359. There's good reason why Godbout's people are loathe to tell you
  2360. what they're working on.  They are flying about in cricles
  2361. flapping their arms getting rady for the Faire...
  2362.  
  2363. More data fter teh Faire.
  2364.  
  2365. JEP
  2366. 15-Mar-83 05:12:20,1669;000000000000
  2367. Return-Path: <goldfarb.UCF-CS@Rand-Relay>
  2368. Date: 15 Mar 1983 04:12:20-PST
  2369. From: goldfarb.ucf-cs@rand-relay.arpa
  2370. Subject: godbout
  2371. To: CSTROM@mit-mc.arpa
  2372. Cc: info-cpm@brl.arpa, pourne@mit-mc.arpa
  2373. Via:  UCF-CS; 15 Mar 83 7:42-PDT
  2374. Received: From Rand-Relay.ARPA via smtptcp;  15 Mar 83 11:10 EST
  2375. Received: From Brl.ARPA via smtptcp;  16 Mar 83 3:21 EST
  2376. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 3:26 EST
  2377.  
  2378. I'm afraid I can't help one helluva lot with the news about CP/M Plus
  2379. for Compupro.  They are so hostile out there that I can't even get any
  2380. help with my problem of more immediate concern.  All I can go on is
  2381. rumor; so far I haven't even heard a rumor about CP/M Plus.
  2382.  
  2383. This morning I called the friendly Godbout folk to see if I could get
  2384. some tech help for my CPU-68K problems.  (A friend and I, both with 
  2385. a lot of 68000 programming experience, failed to get the thing 
  2386. working over the weekend).  I was told by the sweet, young thing on
  2387. the other end of the phone that I should contact my dealer.  When I
  2388. persisted, telling her that my dealer knows as much about software
  2389. as my nine year-old nephew and even less about hardware, she told me
  2390. that she'd "put me through this time, but I can get into a lot of
  2391. trouble for this."  After a suitable delay, Miss Telephone Manners
  2392. advised me that none of the tech people were in, "maybe they're in 
  2393. a meeting or something."
  2394.  
  2395. So you see Godbout is on my **** list at the moment.  Maybe if I send
  2396. a copy of this to Jerry Pournelle, he can give me a technique for 
  2397. solving the 'Godbout Reachability Problem.'  In the meanwhile, I guess
  2398. I'll dust off the logic analyzer...
  2399.                         Ben
  2400. 15-Mar-83 10:40:39,796;000000000000
  2401. Date:     15 Mar 83 10:40:39 EST (Tue)
  2402. From:     Rick Conn <rconn@brl.arpa>
  2403. To:       info-cpm@brl.arpa
  2404. Subject:  [Charlie Strom (:  Installation Manual]
  2405. Received: From Brl.ARPA via smtptcp;  16 Mar 83 3:19 EST
  2406. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 3:25 EST
  2407.  
  2408. FYI.  This should complete the ZCPR2 Manual set, less SYSLIB 2.5.
  2409. Overview AR80 to 83 in FJW.  Thanks, Charlie.
  2410.     Rick
  2411.  
  2412. ----- Forwarded message # 1:
  2413.  
  2414. Date:     15 Mar 83 6:11:39 EST (Tue)
  2415. From:     Charlie Strom (NYU) <strom@Brl-Bmd.ARPA>
  2416. To:       Rick Conn <rconn@brl.arpa>
  2417. cc:       CCP-GROUP@Brl.ARPA
  2418. Subject:  Installation Manual
  2419. Received: From brl-gateway.ARPA via smtptcp;  15 Mar 83 6:16 EST
  2420.  
  2421.  
  2422. Rick,
  2423.     Z2INS.WQ, Z2INS.WQH are now in AR83:FJW;
  2424.  
  2425.             Charlie
  2426.  
  2427.  
  2428. ----- End of forwarded messages
  2429. 15-Mar-83 14:16:31,1016;000000000000
  2430. Return-Path: <MOORE.LOSANGEL.IBM-SJ@Rand-Relay>
  2431. Date: 15 Mar 1983 13:16:31-PST (Tuesday)
  2432. From: Jim moore <MOORE.LOSANGEL.IBM@rand-relay.arpa>
  2433. Subject: customizing user-defined functions in wordstar
  2434. To: info-cpm@brl.arpa
  2435. Cc: moore.losangel.ibm@udel-relay.arpa
  2436. Via:  IBM-SJ; 16 Mar 83 12:14-PDT
  2437. Received: From Rand-Relay.ARPA via smtptcp;  16 Mar 83 15:21 EST
  2438. Received: From Brl.ARPA via smtptcp;  16 Mar 83 15:33 EST
  2439. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 16:58 EST
  2440.  
  2441. I attempted to define strings in USR1 ... USR4 to provide esc-sequences to
  2442. output to an Okidata (epson-like) printer.  Nothing worked.  Instead of the
  2443. desired sequences being produced, small amounts or repeatable, printable
  2444. garbaghe were printed instead.
  2445.  
  2446. I wanted ctl-Q,W,E,R to evoke Italics, Double Width, narrow width and Reset.
  2447.  
  2448. Has anyone succeeded at this?  How?
  2449.  
  2450. Please reply to me at moore.losangel.ibm@udel-relay.  I do not regularly check
  2451. the net address where i receive info-cpm.
  2452.  
  2453. Thanks.
  2454.  
  2455. Jim
  2456. 15-Mar-83 19:13:00,1258;000000000000
  2457. Date: 15 Mar 1983 at 2013-CST
  2458. From: mknox@utexas-11.arpa
  2459. Subject: Small micro-computers
  2460. To: info-cpm@brl.arpa
  2461. Received: From Utexas-11.ARPA via smtptcp;  15 Mar 83 21:37 EST
  2462. Received: From Brl.ARPA via smtptcp;  16 Mar 83 3:34 EST
  2463. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 4:04 EST
  2464.  
  2465.  
  2466. A company I have dealings with is looking to purchase around 100 microcomputers
  2467. for in-house workstations.  They are currently evaluating:
  2468.  
  2469. o NEC APC
  2470.  
  2471. o IBM-PC
  2472.  
  2473. o Heath Z-100
  2474.  
  2475. o BMC
  2476.  
  2477. o TRS-80 Model-16
  2478.  
  2479. They want color and a UNISCOPE terminal emulator, but it isn't mandatory.  They
  2480. also want to run CP/M (but don't seem to know that there are different versions
  2481. such as CP/M-2.2, CP/M-86, CP/M-68K).  Right now the BMC seems to be the front-
  2482. runner because it is color and has the UNISCOPE program which apparently does
  2483. work.  I am familiar with the Model-16 and somewhat with the IBM-PC, though 
  2484. don't know of a UNISCOPE for either.
  2485.  
  2486. Any comments?
  2487.  
  2488. By-the-way, I handled the NEC machine a while.  It is not a bad machine, good
  2489. graphics, but the CP/M-86 implementation is the pits.  They don't even do disk
  2490. blocking/deblocking.  Heads load/unload every 128 bytes, making for one of the
  2491. slowest TYPE commands anywhere.
  2492.  
  2493. -------
  2494. 15-Mar-83 19:21:00,1310;000000000000
  2495. Date: 15 Mar 1983 at 2021-CST
  2496. From: mknox@utexas-11.arpa
  2497. Subject: CP/M-Plus
  2498. To: info-cpm@brl.arpa
  2499. cc: info-trs80@mit-ml.arpa
  2500. Received: From Utexas-11.ARPA via smtptcp;  15 Mar 83 21:52 EST
  2501. Received: From Brl.ARPA via smtptcp;  16 Mar 83 3:34 EST
  2502. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 4:05 EST
  2503.  
  2504.  
  2505. Don't know Godbout's plans, but two pieces of info concerning CP/M-Plus on 
  2506. the TRS-80 Model-II, -12, -16.
  2507.  
  2508. o Tandy announced it for one-week delivery back in January.  Their best guess
  2509. now is maybe the end of April.  Also, it is a minimal implementation.  Leaves
  2510. a small TPA, and not all the expanded features which require bank switching
  2511. (according to reports, they still haven't shipped my copy).
  2512.  
  2513. o Pickles&Trout, one of the two major suppliers of CP/M-2.2 for the above
  2514. machines, has announced that they do NOT intend to support CP/M-Plus.  The
  2515. reason, they feel that the hardware is not suited to the task and that their
  2516. new ACP (a CCP replacement much like ZCPR) will make up the difference.
  2517.  
  2518. If I get the time (a very dubious prospect at present) I will take a look
  2519. at the schematics and see if it is really all that big a problem to do a
  2520. proper CP/M-Plus.  Don't know yet if the Tandy version has enough info left
  2521. with it to re-do the job, but I doubt it.
  2522. -------
  2523. 16-Mar-83 15:34:00,886;000000000000
  2524. Date: 16 Mar 1983 1434-PST
  2525. From: Dick <MEAD@usc-eclb.arpa>
  2526. Subject: FTP of squeezed/obj files
  2527. To: info-cpm@brl.arpa
  2528. Received: From Usc-Eclb.ARPA via smtptcp;  16 Mar 83 17:38 EST
  2529. Received: From Brl.ARPA via smtptcp;  16 Mar 83 17:42 EST
  2530. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 17:48 EST
  2531.  
  2532. There is usually a 4 byte header at the start of these types
  2533. of files, placed there by the modem utility that is used (not FTP),
  2534. and so the files have to have those 4 bytes removed. I do this
  2535. by loading the file with DDT and moving the file down 4 bytes,
  2536. effectively copying over itself. Of course the entire file MUST
  2537. fit in ram, so large files are lost to me, the other option is
  2538. to be able to use the BILLW MODEM program, which I am told an
  2539. can remove the 4 offending bytes. I don't know the reason for the bytes
  2540. something to do with ITS, (operating sys??)
  2541. -------
  2542. 16-Mar-83 17:26:00,673;000000000000
  2543. Date: 16 Mar 1983 1626-PST
  2544. From: DKREBILL@usc-isie.arpa
  2545. Subject: MODEM Routines for VAX 11/780 Using VMS
  2546. To:   info-cpm@mit-mc.arpa
  2547. cc:   dkrebill@usc-isie.arpa
  2548. Received: From Mit-Mc.ARPA via smtptcp;  16 Mar 83 19:27 EST
  2549. Received: From Brl.ARPA via smtptcp;  16 Mar 83 19:28 EST
  2550. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 19:32 EST
  2551.  
  2552. I recently saw a part of an Info-cpm message that made mention of an
  2553. implementation of MODEM for a VAX/VMS. We would like to implement
  2554. same on VMS 3.2 for use with micros and possibly as a part of an
  2555. ETHERNET LAN . Can anyone out there point
  2556. me towards such an implementation????
  2557. Thanks,
  2558. .....Dan Krebill
  2559. -------
  2560. 16-Mar-83 17:41:00,1229;000000000000
  2561. Date: 16 Mar 1983 1941-EST
  2562. From: J. Eliot B. Moss <EBM@mit-xx.arpa>
  2563. Subject: Hard disks
  2564. To: info-cpm@mit-mc.arpa
  2565. Received: From Mit-Mc.ARPA via smtptcp;  16 Mar 83 20:14 EST
  2566. Received: From Brl.ARPA via smtptcp;  16 Mar 83 20:20 EST
  2567. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 20:27 EST
  2568.  
  2569. The February Mini-Micro Systems magazine has a lot of info on Winchesters,
  2570. including a comparison chart and numerous advertisements.
  2571.  
  2572. The previously mentioned Western Dynex 5 Mb removable drive is being shipped
  2573. 12 weeks after receipt of order, according to their office in Arizona.
  2574.  
  2575. Advanced Digital Corp. has what seems to be a good controller for the S-100
  2576. bus and ST-506 interface.  It uses the Westrn Digital LSI hard disk controller
  2577. chip.  It does not use or require DMA -- it buffers an entire sector and
  2578. provides/accepts the data through an I/O port.  Price is $500, including
  2579. CP/M driver code in MicroSoft Macro-80 source form.  They are sending me
  2580. further technical info, but it sounds like a good one.
  2581.  
  2582. Several people said that they had problems using the Morrow Designs board.
  2583. One said he uses a Western Digital board, but it requires extra work to
  2584. interface to the S-100 bus.
  2585.  
  2586.                 Eliot
  2587. -------
  2588. 16-Mar-83 17:45:00,837;000000000000
  2589. Date: 16 Mar 1983 1945-EST
  2590. From: J. Eliot B. Moss <EBM@mit-xx.arpa>
  2591. Subject: CP/M Plus
  2592. To: info-cpm@mit-mc.arpa
  2593. Received: From Mit-Mc.ARPA via smtptcp;  16 Mar 83 20:14 EST
  2594. Received: From Brl.ARPA via smtptcp;  16 Mar 83 20:20 EST
  2595. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 20:28 EST
  2596.  
  2597. I have the Jade set of boards with the "free" CP/M 3.0 (= CP/M Plus)
  2598. on order and should receive it within a week or two.  Right now I have
  2599. a CP/M Plus manual set, but it does not have the manual describing the
  2600. BDOS/BIOS interface -- it is a user's and programmer's manual.  Still,
  2601. I think I understand some of the techniques they are using, and believe
  2602. they will be highly effective.  Anyway, if anyone has specific questions,
  2603. I will see if I can answer them from the information I have and receive
  2604. later.
  2605.                 Eliot
  2606. -------
  2607. 16-Mar-83 18:34:00,1217;000000000000
  2608. Date: 16 March 1983 18:34 EST
  2609. From: Charlie Strom <CSTROM@mit-mc.arpa>
  2610. Subject:  CP/M-Plus
  2611. To: mknox@utexas-11.arpa
  2612. cc: INFO-CPM@brl.arpa
  2613. In-reply-to: The message of 15 Mar 1983 at 2021-CST from mknox at utexas-11.arpa
  2614. Received: From Mit-Mc.ARPA via smtptcp;  16 Mar 83 18:41 EST
  2615. Received: From Brl.ARPA via smtptcp;  16 Mar 83 18:44 EST
  2616. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 18:50 EST
  2617.  
  2618. I have done a little investigation and have found someone who has
  2619. plans to implement a full banked CP/M Plus installation on a Godbout.
  2620. Time frame is on the order of a month he says, and since it will be
  2621. his third implementation, I believe him! I will keep the net informed,
  2622. and am fairly certain the BIOS will be placed into the public domain.
  2623. I think it will be worthwhile to try to develop a list of Plus
  2624. implementations as they appear. I will try to do same, though I do not
  2625. expect that I will be posting anything to the list for at least
  2626. several weeks.
  2627. P&T is all wet if they think a banked Plus system is of minimal
  2628. advantage over a 2.2 setup. This of course of course is an opinion
  2629. based on a reading of the doc and heresay. I will share more
  2630. experiences as I gain them.
  2631.                         Charlie
  2632. 17-Mar-83 08:31:31,906;000000000000
  2633. Sender: RCampbell.es@parc-maxc.arpa
  2634. Date: 17 Mar 83 8:31:31 PST (Thursday)
  2635. From: DKREBILL@usc-isie.arpa
  2636. Subject: MODEM Routines for VAX 11/780 Using VMS
  2637. To: info-cpm@mit-mc.arpa
  2638. cc: dkrebill@usc-isie.arpa
  2639. Received: From Mit-Mc.ARPA via smtptcp;  16 Mar 83 19:27 EST
  2640. Received: From Brl.ARPA via smtptcp;  16 Mar 83 19:28 EST
  2641. Received: From Brl-Bmd.ARPA via smtptcp;  16 Mar 83 19:32 EST
  2642. Received: From Mit-Mc.ARPA via smtptcp;  17 Mar 83 12:44 EST
  2643. Received: From Brl.ARPA via smtptcp;  17 Mar 83 12:57 EST
  2644. Received: From Brl-Bmd.ARPA via smtptcp;  17 Mar 83 13:08 EST
  2645.  
  2646. I recently saw a part of an Info-cpm message that made mention of an
  2647. implementation of MODEM for a VAX/VMS. We would like to implement
  2648. same on VMS 3.2 for use with micros and possibly as a part of an
  2649. ETHERNET LAN . Can anyone out there point
  2650. me towards such an implementation????
  2651. Thanks,
  2652. .........Dan Krebill
  2653. -------
  2654. 17-Mar-83 14:52:00,547;000000000000
  2655. Date: 17 Mar 1983 1352-PST
  2656. From: Chuck McManis <MCMANIS@usc-eclc.arpa>
  2657. Subject: CP/M on PDP-11s
  2658. To: info-cpm@brl.arpa, info-micro@brl.arpa
  2659. Received: From Usc-Eclc.ARPA via smtptcp;  17 Mar 83 16:54 EST
  2660. Received: From Brl.ARPA via smtptcp;  17 Mar 83 17:02 EST
  2661. Received: From Brl-Bmd.ARPA via smtptcp;  17 Mar 83 17:08 EST
  2662.  
  2663.  
  2664. I heard a while back of a program that simulates a CP/M system on
  2665. a PDP-11 under RSX-11M. We have a PDP 11/t55 with among other things
  2666. 2 RX01 floppies. Any pointers would be appreciated.
  2667.  
  2668.                 --Chuck
  2669. -------
  2670. 17-Mar-83 23:57:50,1023;000000000000
  2671. Date: 17 Mar 83 23:57:50 PST (Thu)
  2672. From: David Allen Gewirtz <UCBARPA.dag@ucb-vax.arpa (David Allen Gewirtz)>
  2673. Subject: Bios Cold Boot Vector
  2674. Message-Id: <8303180757.AA10135@UCBARPA.ARPA>
  2675. Received: by UCBARPA.ARPA (3.327/3.17)
  2676.     id AA10135; 17 Mar 83 23:57:50 PST (Thu)
  2677. Received: from UCBARPA.ARPA by UCBVAX.ARPA (3.327/3.17)
  2678.     id AA10186; 17 Mar 83 23:55:15 PST (Thu)
  2679. To: info-cpm@brl.arpa
  2680. Received: From Ucb-Vax.ARPA via smtptcp;  18 Mar 83 2:58 EST
  2681. Received: From Brl.ARPA via smtptcp;  18 Mar 83 3:04 EST
  2682. Received: From Brl-Bmd.ARPA via smtptcp;  18 Mar 83 3:15 EST
  2683.  
  2684.  
  2685. Is the first BIOS vector (the cold boot vector) used once CP/M is
  2686. running?  I want to be able to put another vector into that location
  2687. after the system has warm booted.  Do any programs use the cold boot
  2688. once CP/M is running?
  2689.  
  2690. (Yes, I know that if they used it, it would cause the system to
  2691. cold boot.  But do any programs purposely cold boot?  Perhaps another
  2692. way of phrasing it is why does that vector exist?)
  2693.  
  2694. Thanks,
  2695.  
  2696. David
  2697. 18-Mar-83 05:32:00,624;000000000000
  2698. Date: 18 March 1983 05:32 EST
  2699. From: Paul R. Grupp <GRUPP@mit-mc.arpa>
  2700. Subject:  Bios Cold Boot Vector
  2701. To: UCBARPA.dag@ucb-vax.arpa
  2702. cc: info-cpm@brl.arpa
  2703. In-reply-to: Msg of 17 Mar 83 23:57:50 PST (Thu) from David Allen Gewirtz <UCBARPA.dag at ucb-vax.arpa (David Allen Gewirtz)>
  2704. Received: From Mit-Mc.ARPA via smtptcp;  18 Mar 83 5:33 EST
  2705. Received: From Brl.ARPA via smtptcp;  18 Mar 83 5:36 EST
  2706. Received: From Brl-Bmd.ARPA via smtptcp;  18 Mar 83 5:43 EST
  2707.  
  2708. Some Bios coldboots patch the coldboot vector to the warmboot address
  2709. AFTER the coldboot has taken place.... So this should be acceptable.
  2710. Regards, Paul
  2711. 18-Mar-83 09:54:00,752;000000000000
  2712. Date: 18 March 1983 09:54 EST
  2713. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  2714. Subject:  Bios Cold Boot Vector
  2715. To: UCBARPA.dag@ucb-vax.arpa
  2716. cc: Info-Cpm@brl.arpa
  2717. In-reply-to: Msg of 17 Mar 83 23:57:50 PST (Thu) from David Allen Gewirtz <UCBARPA.dag at ucb-vax.arpa (David Allen Gewirtz)>
  2718. Received: From Mit-Mc.ARPA via smtptcp;  18 Mar 83 10:11 EST
  2719. Received: From Brl.ARPA via smtptcp;  18 Mar 83 10:17 EST
  2720. Received: From Brl-Bmd.ARPA via smtptcp;  18 Mar 83 16:50 EST
  2721.  
  2722. I have seen some programs that use the cold-boot vector, but I don't
  2723. recall what their names are.  If you want some jump vectors without
  2724. adding them at the end of the present jump table, how about PUNCH and
  2725. READER?  Some CBIOSs don't implement those at all, just do a RETurn.
  2726. 18-Mar-83 23:37:00,5354;000000000000
  2727. Date: 18 Mar 1983 2237-PST
  2728. From: LHILL@usc-eclb.arpa
  2729. Subject: AR61, AR80-83 Trials
  2730. To:   info-cpm@brl.arpa
  2731. Received: From Usc-Eclb.ARPA via smtptcp;  19 Mar 83 1:39 EST
  2732. Received: From Brl.ARPA via smtptcp;  19 Mar 83 1:45 EST
  2733. Received: From Brl-Bmd.ARPA via smtptcp;  19 Mar 83 1:46 EST
  2734.  
  2735.    Over the past week I have attempted to download the files on the MIT-MC
  2736. CPM directory disks AR61 and AR80-AR83. My success has been mixed. I will
  2737. provide a record (below), but 1st let me describe the configurations.
  2738.  
  2739. MC to ECLB
  2740.    All files were first moved from MC to ECLB under IMAGE.
  2741.  
  2742. ECLB
  2743.    I have tried to download files, which failed, several times using
  2744. various combinations of:
  2745.      <WANCHO>  MODEM.EXE.116
  2746.      <RIZZI>   MODEM.EXE.31
  2747.      <BILLW>   MODEM.EXE.90
  2748.               NMODEM.EXE.49
  2749.               XMODEM.EXE.1
  2750.                MODEM.MAC.115
  2751.      <STERNLIGHT>MODEM.EXE.?
  2752. (Thanks are extended to each of these programmers for making these files
  2753. available)
  2754.    Each of these programs run under the TOPS EXE, and may all derive from
  2755. a common root program, as it is dificult to tell them apart when running.
  2756.  
  2757. TAC
  2758.    I must operate through a TAC, upon which I set:
  2759.           @p t
  2760.           @f i e
  2761.           @f o e
  2762. and sometimes
  2763.           @b i s
  2764.           @b o s
  2765. which dosen't seem to make any difference.
  2766.  
  2767. At HOME
  2768.    I have a MAX80 upon which I can run CP/M 2.2 or LDOS5.1.3 and a
  2769. 300 baud Hayes Smartmodem. To download the files I have tried MODEM72,
  2770. SMODEM37, MDM705 and LMODEM (under LDOS - Les Mikesells pgm). I have
  2771. used both CHECKSUM and CRC mode - no difference noted.
  2772.  
  2773. RESULTS
  2774.    In the list below where a file failed to transfer it failed, each
  2775. time on the same sector, CONSISTANTLY. All combinations of MODEM 
  2776. programes (TOPS and at HOME) produced the exact same result!
  2777.    All transfers were S to R (also tried many combinations like
  2778. SQ, SQN, SQIN, R, RQ,etc) except one (*).
  2779.  
  2780.    FILE      Failed    # of               FILE       Failed     # of
  2781.              in SEC   Sectors                        in SEC    Sectors
  2782.                 #   
  2783.  AR61                                    AR82
  2784. MDM705 ASM     110      1075 *          CCPLOC COM         OK      5
  2785. MDM705 CFGASM     OK     107            CD     COM      20        32
  2786. MDM705 COM        OK     129            COMPAR COM      32        37
  2787. MDM705 DOC        OK     269            CONFIG COM         OK    147
  2788. MDM705 INF        OK      37            CRC    COM      20        60
  2789. MDM705 MSG        OK       8            DEVICE COM      20        22
  2790. MDM705 NMASM      OK      27            DIFF   COM         OK     43
  2791. MDM705 OSASM      OK      79            DU2    COM         OK     78
  2792. MDM705 OSINF      OK       6            ECHO   COM         OK      5
  2793. MDM705 SET        OK      61            ERASE  COM      27        52
  2794.                                         GENINS COM      89        98
  2795.  AR80                                   HELP   COM         OK     20
  2796. Z2RAT  WQ         OK      ??            IOLOAD COM      23        30
  2797. Z2RAT  WQH        OK      ??            LD     COM         OK     33
  2798. Z2SYS  MOD        OK      ??            LDIRZ  COM         OK     45
  2799. Z2UG   WQ        5       399            LRUNZ  COM         OK     14
  2800. Z2UG   WQH      36        67            MCHECK COM         OK     36
  2801. Z2UG1  WQ      180       372            MCOPY  COM         OK     85
  2802. ZCPR2  23AQM    12       296            MENU   COM         OK     16
  2803. ZCPR2  23LQB     1        82            MENU   CPR         OK      4
  2804.                                         MKDIR  COM         OK     59
  2805.  AR81                                   PATH   COM         OK     38
  2806. CFILES HQP         OK    114            PROTEC COM      20        58
  2807. COMPAR HQP       2        37            PWD    COM      11        34
  2808. CPMTR  HQP       2       107            RECORD COM         OK     15
  2809. DU2    HQP       1       180            RENAME COM      20        61
  2810. HELP   HQP         OK      8            STARTU COM      20        28
  2811. HELP2  HQP       2       111            SUB    COM         OK     24
  2812. IO     HQP         OK     70            TINIT  COM      17        34
  2813. LU     HQP     115       141            WHEEL  COM         OK     11
  2814. MCOPY  HQP       2        58            XDIR   COM         OK     84
  2815. MENU   HQP      85       146            ZEX    COM         OK     48
  2816. NDIRS  HQP       1       182
  2817. XDIR3  HQP       3       113             AR83
  2818. Z2ALT  HQP       2       109            Z2CON  WQ      316       615
  2819. Z2RES  HQP       1        38            Z2CON  WQH       1        37
  2820. ZCPR2  HQP       1        29            Z2UG2  WQ          OK    290
  2821.                                         Z2UG3  WQ          OK    252
  2822. * I captured this ASCII file.           Z2INS  WQ      201       455
  2823.                                         Z2INS  WQH       1        26
  2824.  
  2825.    The above information is provided to:
  2826.       1. provide those who maintain the data base (hopefully) some useful
  2827.          imformation,
  2828.       2. seek help from anyone who may be able to spot the error in my
  2829.          methods, and
  2830.       3. represent a success/fail table for others who are attempting
  2831.          to download these files.
  2832.  
  2833.    I would, very much, like some feedback!
  2834.  
  2835.                                         Lem Hill <LHILL at ECLB>
  2836. -------
  2837. 19-Mar-83 08:03:00,959;000000000000
  2838. Date: 19 March 1983 08:03 EST
  2839. From: Charlie Strom <CSTROM@mit-mc.arpa>
  2840. Subject: New CP/M Plus ARchive
  2841. To: INFO-CPM@brl.arpa
  2842. Received: From Mit-Mc.ARPA via smtptcp;  19 Mar 83 8:05 EST
  2843. Received: From Brl.ARPA via smtptcp;  19 Mar 83 10:36 EST
  2844. Received: From Brl-Bmd.ARPA via smtptcp;  19 Mar 83 10:42 EST
  2845.  
  2846. I have uploaded Dave Hardy's CP/M Plus (aka 3.0) BIOS for the Morrow
  2847. DJ2D disk controller to AR18:CPM on MC. This is the first entry in this
  2848. arcive, but we expect to be able to expand the available Plus BIOS
  2849. implementations in the near future. See Dave's article series in
  2850. Microsystems magazine for an excellent treatment of upgrading from
  2851. 2.2 to 3.0.
  2852.  
  2853. I solicit any CP/M Plus software for this archive. Please contact me if
  2854. you have any contributions; I am also planning on editing a list of
  2855. available implementations both proprietary and in the public domain,
  2856. and would appreciate details if you know of such.
  2857.  
  2858.                         Charlie Strom
  2859. 19-Mar-83 12:19:00,938;000000000000
  2860. Date: 19 Mar 1983 1119-PST
  2861. Sender: LEVYAL@usc-isi.arpa
  2862. Subject: Apparent problem with TAC/TCP
  2863. From: LEVYAL@usc-isi.arpa
  2864. To: LHILL@usc-eclb.arpa
  2865. Cc: Info-cpm@mit-mc.arpa
  2866. Message-ID: <[USC-ISI]19-Mar-83 11:19:31.LEVYAL>
  2867. Received: From Mit-Mc.ARPA via smtptcp;  19 Mar 83 14:22 EST
  2868. Received: From Brl.ARPA via smtptcp;  19 Mar 83 14:27 EST
  2869. Received: From Brl-Bmd.ARPA via smtptcp;  19 Mar 83 14:38 EST
  2870.  
  2871. I tried to download AR82:CPM;CD and died at block 20,
  2872. exactly where LHILL did . I ran Modem705 on Apple
  2873. I had f o e and f i e set to delete flow control( I noticed
  2874. that that command turns off nulls). I also tried a different
  2875. program ASCOM which uses Check character not CRC as modem705 does.
  2876. Results exactly the same. I would guess there is some code
  2877. sensitivity in net. Any help from the TCP/TAC gurus would be
  2878. appreciated. Oh-Modem705 said timeout.
  2879. Hope this helps,
  2880. Allan
  2881. PS Modem705 is really very very nice ....
  2882. 19-Mar-83 13:01:00,784;000000000000
  2883. Date: 19 Mar 83 13:01 PST (Saturday)
  2884. From: Stiles.es@parc-maxc.arpa
  2885. Subject: Re: MODEM Routines for VAX 11/780 Using VMS
  2886. In-reply-to: RCampbell's message of 17 Mar 83 8:31:31 PST (Thursday)
  2887. To: RCampbell.es@parc-maxc.arpa
  2888. cc: info-cpm@mit-mc.arpa, dkrebill@usc-isie.arpa
  2889. Received: From Mit-Mc.ARPA via smtptcp;  19 Mar 83 16:00 EST
  2890. Received: From Brl.ARPA via smtptcp;  19 Mar 83 16:11 EST
  2891. Received: From Brl-Bmd.ARPA via smtptcp;  19 Mar 83 16:21 EST
  2892.  
  2893. Dan,
  2894.  
  2895. By MODEM do you mean MODEM7 (such as a micro uses to talk to an RCPM
  2896. system) or XMODEM (the program at the RCPM which talks to the micro)?  I am
  2897. looking for a public domain implementation of XMODEM for a VAX/VMS
  2898. 11-780, and would appreciate any pointers to same.
  2899.  
  2900. Thanks,
  2901.  
  2902. William Stiles (213) - 536-5826
  2903. 19-Mar-83 13:09:01,917;000000000000
  2904. Date: Sat 19 Mar 83 15:09:01-EST
  2905. From: Dan Tappan <Tappan@bbng.arpa>
  2906. Subject: Re: Apparent problem with TAC/TCP
  2907. To: LEVYAL@usc-isi.arpa
  2908. cc: LHILL@usc-eclb.arpa, Info-cpm@mit-mc.arpa, Tappan@bbng.arpa, 
  2909.     JGoldberger@usc-isi.arpa
  2910. In-Reply-To: Your message of Sat 19 Mar 83 14:19:00-EST
  2911. Received: From Mit-Mc.ARPA via smtptcp;  19 Mar 83 15:14 EST
  2912. Received: From Brl.ARPA via smtptcp;  19 Mar 83 15:25 EST
  2913. Received: From Brl-Bmd.ARPA via smtptcp;  19 Mar 83 15:37 EST
  2914.  
  2915. I suspect that the problem is that TOPS20 is not properly
  2916. doubling the 377 character (the TELNET protocol requires
  2917. that or the TAC will eat it) and on that block
  2918. the checksum is coming out to 377.
  2919.  
  2920. We have code in our monitor to fix this but it may not have migrated
  2921. to ISI/ECL yet. I'll make it available to your system people.
  2922.  
  2923. We probably shouldn't be bothering the whole info-CPM list
  2924. with this discussion.
  2925.  
  2926. Dan
  2927. -------
  2928. 19-Mar-83 13:22:00,1454;000000000000
  2929. Date: 19 Mar 83 13:22 PST (Saturday)
  2930. From: fisher.eos@parc-maxc.arpa
  2931. Subject: Distributed Databases under Multiprocessing CPM?
  2932. To: INFO-CPM@brl.arpa
  2933. cc: DonStewart.eos@parc-maxc.arpa, fisher.eos@parc-maxc.arpa
  2934. Received: From Parc-Maxc.ARPA via smtptcp;  19 Mar 83 16:20 EST
  2935. Received: From Brl.ARPA via smtptcp;  19 Mar 83 16:25 EST
  2936. Received: From Brl-Bmd.ARPA via smtptcp;  19 Mar 83 16:35 EST
  2937.  
  2938. I have a problem which involves two PC's communicating over a 
  2939. (poor quality) telephone line and maintaining two copies of the same 
  2940. database.  While communicating each PC will be involved with 
  2941. querying and updating the database.  Entries made in one database 
  2942. want to be transmitted to the other PC for automatic update of the 
  2943. other database; and vice versa.
  2944.  
  2945. My questions:
  2946.  
  2947. 1) Has anyone heard of any similar applications?  Using CPM?
  2948.  
  2949. 2) It seemed that a multiprocessing CPM might make the application 
  2950. easier to create.  Is there a multiprocessing CPM available?
  2951.  
  2952. 3) Any standard packages that might help?  I have been considering 
  2953. using CPM, extracting the Ward Christensen FTP suff from a 
  2954. MODEM-like program, and maintaining the database via MBASIC 
  2955. or FORTRAN, perhaps using a product like MDBS.  Any suggestions?
  2956.  
  2957. 4) The PC is up in the air.  Am looking with a portable with some 
  2958. track record including a 5-15Mb hard disk.  Any experiences here 
  2959. would be appreciated?
  2960.  
  2961. Thanks in advance for your response.
  2962.  
  2963. Pete
  2964. 19-Mar-83 14:31:00,1550;000000000000
  2965. Date: 19 Mar 83 14:31 PST (Saturday)
  2966. Sender: fisher.eos@parc-maxc.arpa
  2967. From: fisher.eos@parc-maxc.arpa
  2968. Subject: Distributed Databases under Multiprocessing CPM? (Update)
  2969. To: INFO-CPM@brl.arpa
  2970. cc: DonStewart.eos@parc-maxc.arpa, fisher.eos@parc-maxc.arpa
  2971. Received: From Parc-Maxc.ARPA via smtptcp;  19 Mar 83 17:28 EST
  2972. Received: From Brl.ARPA via smtptcp;  19 Mar 83 17:32 EST
  2973. Received: From brl-gateway.ARPA via smtptcp;  19 Mar 83 17:35 EST
  2974.  
  2975. I have a problem which involves two PC's communicating over a 
  2976. (poor quality) telephone line and maintaining two copies of the same 
  2977. database.  While communicating each PC will be involved with 
  2978. querying and updating the database.  Entries made in one database 
  2979. want to be transmitted to the other PC for automatic update of the 
  2980. other database; and vice versa.
  2981.  
  2982. My questions:
  2983.  
  2984. 1) Has anyone heard of any similar applications?  Using CPM?
  2985.  
  2986. 2) It seemed that a multiprocessing CPM might make the application 
  2987. easier to create.  Is there a multiprocessing CPM available?
  2988.  
  2989. 3) Any standard packages that might help?  I have been considering 
  2990. using CPM, extracting the Ward Christensen FTP suff from a 
  2991. MODEM-like program, and maintaining the database via MBASIC 
  2992. or FORTRAN, perhaps using a product like MDBS.  Any suggestions?
  2993.  
  2994. 4) The PC is up in the air.  Am looking with a portable with some 
  2995. track record including a 5-15Mb hard disk.  Any experiences here 
  2996. would be appreciated?
  2997.  
  2998. Thanks in advance for your response.
  2999.  
  3000. Please respond to: Fisher.eos@PARC-MAXC.ARPA
  3001.  
  3002. Pete
  3003. 19-Mar-83 21:54:00,417;000000000000
  3004. Date: 19 March 1983 21:54 EST
  3005. From: James William O'Toole <JAMES@mit-ml.arpa>
  3006. To: INFO-CPM@mit-ml.arpa
  3007. Received: From Mit-Ml.ARPA via smtptcp;  19 Mar 83 21:53 EST
  3008. Received: From Brl.ARPA via smtptcp;  19 Mar 83 22:15 EST
  3009. Received: From Brl-Bmd.ARPA via smtptcp;  19 Mar 83 22:25 EST
  3010.  
  3011. I need CP/M for a TRS model I with lowercase mod,2 5.25 inch
  3012. drives, and a modem.  Thanks in advance.
  3013.  
  3014.   --James O'Toole
  3015. 20-Mar-83 09:07:50,590;000000000000
  3016. Date:     20 Mar 83 9:07:50 EST (Sun)
  3017. From:     Rick Conn <rconn@brl.arpa>
  3018. To:       Keith Petersen <W8SDZ@mit-mc.arpa>
  3019. cc:       UCBARPA.dag@ucb-vax.arpa, Info-Cpm@brl.arpa
  3020. Subject:  Re:  Bios Cold Boot Vector
  3021. Received: From Brl.ARPA via smtptcp;  20 Mar 83 14:11 EST
  3022. Received: From Brl-Bmd.ARPA via smtptcp;  20 Mar 83 14:13 EST
  3023.  
  3024. Some CBIOSs -do- implement PUNCH and READER, however ... as clock I/O
  3025. for one, or special I/O devices (like a remote computer).  If you don't
  3026. care about creating transportable code and your system doesn't use
  3027. PUNCH and READER, this is an answer.
  3028. 20-Mar-83 09:19:03,873;000000000000
  3029. Date:     20 Mar 83 9:19:03 EST (Sun)
  3030. From:     Rick Conn <rconn@brl.arpa>
  3031. To:       Stiles.es@parc-maxc.arpa
  3032. cc:       RCampbell.es@parc-maxc.arpa, info-cpm@mit-mc.arpa, dkrebill@usc-isie.arpa
  3033. Subject:  Re:  MODEM Routines for VAX 11/780 Using VMS
  3034. Received: From Mit-Mc.ARPA via smtptcp;  20 Mar 83 9:25 EST
  3035. Received: From Brl.ARPA via smtptcp;  20 Mar 83 14:11 EST
  3036. Received: From Brl-Bmd.ARPA via smtptcp;  20 Mar 83 14:13 EST
  3037.  
  3038. I am working on VMODEM as time permits these days.  It is an implementation
  3039. of UMODEM that is to run under VAX/VMS on our 11/780 at work.  Am writing
  3040. it in C using DEC's new C compiler.  Will send it to MC and post a message
  3041. when it is done, but don't hold your breath.  Time is not permitting.
  3042.  
  3043. PS -- I'm getting around the binary mode conversion problem by using
  3044. exec and invoking SET TERM /PASSALL as a subprocess.
  3045.  
  3046.     Rick
  3047. 20-Mar-83 14:17:34,4439;000000000000
  3048. Date:     20 Mar 83 14:17:34 EST (Sun)
  3049. From:     Keith Petersen <w8sdz@brl.arpa>
  3050. To:       Info-Cpm@brl.arpa
  3051. Subject:  [gregr:  Re: New CP/M Card for APPLE ][]
  3052. Received: From Brl.ARPA via smtptcp;  20 Mar 83 14:25 EST
  3053. Received: From Brl-Bmd.ARPA via smtptcp;  20 Mar 83 14:36 EST
  3054.  
  3055. This should have been posted to Info-Cpm, but I hear that the usenet
  3056. gateway to Info-Cpm has been inoperative since January.  I suppose
  3057. that's why the author of the message posted it to Info-Micro instead.
  3058. I am forwarding it because it is very informative.  Appologies to
  3059. those who receive two copies.
  3060. --Keith
  3061.  
  3062. ----- Forwarded message # 1:
  3063.  
  3064. Date: 19 Mar 83 2:40:47-PST (Sat)
  3065. To: info-micro@brl.arpa
  3066. From: menlo70!sytek!zehntel!tektronix!tekid!gregr@ucb-vax.arpa
  3067. Subject: Re: New CP/M Card for APPLE ][
  3068. Article-I....D.: tekid.1039
  3069. Received: from Usenet.uucp by SRI-Unix.uucp with rs232; 20 Mar 83 1:31-PST
  3070. Received: From Sri-Unix.ARPA via smtptcp;  20 Mar 83 4:44 EST
  3071. Received: From Brl.ARPA via smtptcp;  20 Mar 83 4:47 EST
  3072. Received: From Brl-Bmd.ARPA via smtptcp;  20 Mar 83 4:52 EST
  3073.  
  3074. I was also very interested in the ALS CP/M Card because I currently have
  3075. a Microsoft Softcard for my Apple ][ and have found several deficiencies
  3076. relative to my applications.  The most important performance
  3077. consideration for me is speed and the Softcard has an effective clock
  3078. rate of only 2 Mhz.  Also the Softcard does not include all standard
  3079. CP/M utilities such as SYSGEN nor does it include the BIOS source code
  3080. although this has been documented in magazines.  As soon as I saw the
  3081. ALS ad I called them to confirm the apparent 6 Mhz clock rate.  I asked
  3082. to speak to technical support or a product engineer but was told they
  3083. were "too busy completing the product design in order that shipments
  3084. might begin by the end of March".  The marketing folks informed me that
  3085. the Z-80 ran at 6 Mhz without wait states although they didn't seem to
  3086. know what wait states were initially.  I was also interested in details
  3087. about how bank switching was done ( a feature of CP/M Plus ) such as the
  3088. effective clock rate when using the motherboard RAM.  I really needed to
  3089. talk to a product engineer for this information and followup questions
  3090. but they weren't available.  I next decided to confirm that schematics
  3091. were available for the board but I was told that schematics were NOT
  3092. included and none would be provided under any circumstances.  I also
  3093. asked if BIOS source code was included and again the reply was NO!  Again
  3094. this would not be supplied under any circumstances although this policy
  3095. was subject to review at some future time I was told.  I immediately
  3096. checked the ad for the product and found this claim; "...and full
  3097. documentation - for just $399.".   I can find no reasonable
  3098. justification for these omissions and I consider them essential portions
  3099. of the documentation.  The bad part of all this is that I really want to
  3100. buy this product.  (I had even reserved one with my local retailer).  At
  3101. this point I not sure what to do next.  If any other potential customers
  3102. for this product feel the same about this issue as I do you could help
  3103. us all by calling ALS and expressing your opinion.  ALS has a toll-free
  3104. number 800-538-8177 outside California that you can use to get
  3105. additional information or express your concerns.  Anyone obtaining
  3106. additional information about this product could mail it to me or post it
  3107. to the net.  I really believe that this product is an excellent value
  3108. except for the documentation problem and will be valuable for any Apple
  3109. CP/M user.
  3110.  
  3111. A little more information -- I was told that the CP/M Card will come
  3112. with all documentation and utility programs that one would receive from
  3113. Digital Research if you were to purchase CP/M Plus directly from them. I
  3114. f this is so it makes this product an even better value.  GSX-80, also
  3115. from DR is not yet released but will be shipped to all CP/M Card owners
  3116. as soon as its available.  
  3117.  
  3118. Finally -- I believe that another 6 Mhz Z-80 card is available but I
  3119. recall no mention of CP/M Plus.  The price was somewhere around $600.
  3120. The initials of the company were something like PCIP.  Does anyone have
  3121. any information about this board?  Also how long will it take Microsoft
  3122. to respond with their own product?  Anyone have any insight on this?
  3123.  
  3124.                     Greg Rogers
  3125.                     Tektronix
  3126.  
  3127.  
  3128.  
  3129.  
  3130.  
  3131.  
  3132. ----- End of forwarded messages
  3133. 21-Mar-83 05:12:00,1112;000000000000
  3134. Date: 21 March 1983 05:12 EST
  3135. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  3136. Subject: New MDM705 Osborne overlay
  3137. To: Info-Cpm@brl.arpa
  3138. Received: From Mit-Mc.ARPA via smtptcp;  21 Mar 83 5:14 EST
  3139. Received: From Brl.ARPA via smtptcp;  21 Mar 83 5:24 EST
  3140. Received: From Brl-Bmd.ARPA via smtptcp;  21 Mar 83 5:26 EST
  3141.  
  3142. Osborne users who are interested in MDM705 (the latest
  3143. version of MODEM7) will want to get a copy of MDM705OS.ASM.
  3144. If you tried this one before and it didn't work, try again.
  3145. This is a fixed version of the Osborne overlay file.
  3146. It's available from MIT-MC as AR61:CPM;MDM705 OSASM.
  3147. Here's a short note explaining the changes/fixes
  3148. to the Osborne overlay:
  3149.  
  3150. ---
  3151. MDM705OS.MSG edited 3/18/83 by Keith Petersen, W8SDZ
  3152.  
  3153. Date: 03/16/82
  3154. From: Norm London
  3155. To:   All
  3156.  
  3157. The MDM705OS program did not work properly.  I have
  3158. corrected some of the problems and have uploaded a
  3159. modified MDM705OS.AQM which works prooperly with the
  3160. OCC-1.
  3161.  
  3162. This version always prompts for baudrate when Init
  3163. routine is activated.  Enter 0 to get default set
  3164. by OSFIG. 
  3165.  
  3166. --> FILE:  MDM705OS.AQM        CRC = 2F CE
  3167. 21-Mar-83 06:24:00,459;000000000000
  3168. Date: 21 March 1983 06:24 EST
  3169. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  3170. Subject: SWEEP38 now available
  3171. To: Info-Cpm@brl.arpa
  3172. Received: From Mit-Mc.ARPA via smtptcp;  21 Mar 83 6:27 EST
  3173. Received: From Brl.ARPA via smtptcp;  21 Mar 83 6:29 EST
  3174. Received: From Brl-Bmd.ARPA via smtptcp;  21 Mar 83 6:41 EST
  3175.  
  3176. A new version of SWEEP, the directory maintenance and file copy
  3177. program is now available on MIT-MC.
  3178.  
  3179. AR24:CPM;SWEEP 38COM
  3180. AR24:CPM;SWEEP 38DOC
  3181. 21-Mar-83 07:42:24,497;000000000000
  3182. Date:     21 Mar 83 7:42:24 EST (Mon)
  3183. From:     Harold Carter (AFIT) <hcarter@brl.arpa>
  3184. To:       info-cpm@brl.arpa
  3185. cc:       hcarter@brl.arpa
  3186. Subject:  Small-C V2
  3187. Received: From Brl.ARPA via smtptcp;  21 Mar 83 7:49 EST
  3188. Received: From Brl-Bmd.ARPA via smtptcp;  21 Mar 83 8:25 EST
  3189.  
  3190. In trying to execute Small C for the first time, I was unable to find the
  3191. external references in RUNTIM.  Anyone know where they should be?  Also,
  3192. what is the best way to handle long integers?
  3193.  
  3194.             Hal
  3195. 21-Mar-83 15:50:30,668;000000000000
  3196. Date: 21 Mar 83 15:50:30 PST (Mon)
  3197. From: David Allen Gewirtz <UCBARPA.dag@ucb-vax.arpa (David Allen Gewirtz)>
  3198. Subject: YAM8
  3199. Message-Id: <8303212350.AA25928@UCBARPA.ARPA>
  3200. Received: by UCBARPA.ARPA (3.327/3.17)
  3201.     id AA25928; 21 Mar 83 15:50:30 PST (Mon)
  3202. Received: from UCBARPA.ARPA by UCBVAX.ARPA (3.331/3.17)
  3203.     id AA00582; 21 Mar 83 16:19:10 PST (Mon)
  3204. To: info-cpm@brl.arpa
  3205. Received: From Ucb-Vax.ARPA via smtptcp;  21 Mar 83 19:23 EST
  3206. Received: From Brl.ARPA via smtptcp;  21 Mar 83 23:39 EST
  3207. Received: From Brl-Bmd.ARPA via smtptcp;  21 Mar 83 23:41 EST
  3208.  
  3209.  
  3210. Both dif.2c and ssed.2c require YAM8 in linkage.
  3211.  
  3212. Where is this file located?
  3213.  
  3214. Thanks,
  3215. David
  3216. 22-Mar-83 01:18:57,1021;000000000000
  3217. Received: from TARTAN-20 by CMU-CS-C (with TLNMTS); 22 Mar 83 01:18:25 EST
  3218. Received: ID <BYRNE@TARTAN-20>; 22 Mar 83 01:18:57 EST
  3219. Date: 22 Mar 83 01:18:57 EST
  3220. From: Steve <byrne%TARTAN-20@cmu-cs-c.arpa (Steve)>
  3221. Subject: Morrow DJ2D
  3222. To: info-cpm@mit-mc.arpa
  3223. cc: byrne%TARTAN-20@cmu-cs-c.arpa
  3224. Work-phone: (412) 621-2210
  3225. Received: From Mit-Mc.ARPA via smtptcp;  22 Mar 83 2:12 EST
  3226. Received: From Brl.ARPA via smtptcp;  22 Mar 83 3:15 EST
  3227. Received: From Brl-Bmd.ARPA via smtptcp;  22 Mar 83 3:18 EST
  3228.  
  3229. Folks:
  3230.     I currently have a real old DJ controller board and am looking
  3231. at replacing it (it's terribly slow as much of the control functions
  3232. are done in software).  I've heard good things about the DJ2D, but
  3233. I am worried that it too suffers from "software-itis" (using
  3234. software where hardware is more appropriate).  Are my fears justified?
  3235. What kind of performance does this board provide?  Are there any
  3236. restrictions (such as not having any other DMA devices on the bus)?
  3237.  
  3238. Thanks.
  3239.  
  3240. steve
  3241. -------
  3242. 22-Mar-83 12:40:38,983;000000000000
  3243. Date: 22 Mar 1983 11:40:38-PST
  3244. From: CCVAX.revc@nosc-cc.arpa
  3245. To: info-cpm@brl.arpa
  3246. Subject: Modifying WordStar for printers
  3247. Received: From Nosc-Cc.ARPA via smtptcp;  22 Mar 83 15:16 EST
  3248. Received: From Brl.ARPA via smtptcp;  22 Mar 83 21:20 EST
  3249. Received: From Brl-Bmd.ARPA via smtptcp;  22 Mar 83 23:18 EST
  3250.  
  3251. -------
  3252. I thought some people on the net might also be interested
  3253. in this. - Bob
  3254.  
  3255. To:  MORE.LOSANGEL.IBM@rand-relay
  3256. Subject: printer controls
  3257. -------
  3258. Jim ;
  3259.     We have a local Users group member who re-configures
  3260.     WordStar for a living.  He charges less that $50 to
  3261.     make all the corrections and add a whole fist-full of
  3262.     features.  If you send me your mailing address, I'll
  3263.     pass it to him and he can mail you some info.
  3264.         His business is called C.I. Software,
  3265.         and the product is called HexprinteR.
  3266.         (he's not on the net)
  3267.  
  3268.         Bob Van Cleef
  3269. mail repies to:
  3270.  
  3271. ARPA     CCVAX.revc at NOSC-CC
  3272. Usenet "...floyd!cmc12!philabs!sdcsvax!nosc!revc
  3273. -------
  3274. 22-Mar-83 16:23:00,526;000000000000
  3275. Date: 22 Mar 1983 1523-PST
  3276. From: Dick <MEAD@usc-eclb.arpa>
  3277. Subject: Small-C V2 doc??
  3278. To: info-cpm@brl.arpa
  3279. Received: From Usc-Eclb.ARPA via smtptcp;  22 Mar 83 18:24 EST
  3280. Received: From Brl.ARPA via smtptcp;  22 Mar 83 21:36 EST
  3281. Received: From Brl-Bmd.ARPA via smtptcp;  22 Mar 83 23:40 EST
  3282.  
  3283. I would like info on the route I need to take to assemble/compile
  3284. the sources in AR76/77. Is the HEX file the compiled version
  3285. of the current MAC files??? I need a little documentation
  3286. for my RCPM users. Thanks...
  3287. -------
  3288. 22-Mar-83 16:34:00,641;000000000000
  3289. Date: 22 Mar 1983 1534-PST
  3290. Subject: Re: Perfect Writer/Formatter/Calc/Filer bugs
  3291. From: Jim Moore <MOORE@usc-isib.arpa>
  3292. To: bridger@rand-unix.arpa, info-cpm@brl.arpa, info-micro@brl.arpa
  3293. In-Reply-To: Your message of Wednesday,  9 Mar 1983 12:56-PST
  3294. Received: From Usc-Isib.ARPA via smtptcp;  22 Mar 83 18:35 EST
  3295. Received: From Brl.ARPA via smtptcp;  22 Mar 83 21:37 EST
  3296. Received: From Brl-Bmd.ARPA via smtptcp;  22 Mar 83 23:41 EST
  3297.  
  3298. I am intereste d in your results/summary of the \perfect Stuff (but have no
  3299. wisdom to contribute).  Please put me on your list of people who receive
  3300. your summary.  Thanks.
  3301.  
  3302. Jinm Moore
  3303. -------
  3304. 22-Mar-83 20:58:00,531;000000000000
  3305. Date: 22 March 1983 20:58 EST
  3306. From: Eric J. Swenson <EJS@mit-mc.arpa>
  3307. Subject:  DU2.COM in AR82:CPM;
  3308. To: W8SDZ@mit-mc.arpa, rconn@brl.arpa, info-cpm@brl.arpa
  3309. Received: From Mit-Mc.ARPA via smtptcp;  22 Mar 83 23:38 EST
  3310. Received: From Brl.ARPA via smtptcp;  22 Mar 83 23:48 EST
  3311. Received: From Brl-Bmd.ARPA via smtptcp;  23 Mar 83 0:06 EST
  3312.  
  3313. Has anyone else reported difficulties with DU2.COM?  I can't get it to run
  3314. correctly on my system...it just sits there upon invocation and prints
  3315. CRLFs until I reboot the system.  
  3316. 23-Mar-83 01:44:00,1063;000000000000
  3317. Date: 23 March 1983 01:44 EST
  3318. From: 
  3319.  
  3320.       (ADDRESS PROBLEM at host BRL-BMD: "Eric J. Swenson <EJS@mit-mc.arpa>")
  3321. Subject:  Small-C V2 doc??
  3322. To: MEAD@usc-eclb.arpa
  3323. cc: INFO-CPM@mit-mc.arpa
  3324. In-reply-to: Msg of 22 Mar 1983 1523-PST from Dick <MEAD at usc-eclb.arpa>
  3325. Received: From Mit-Mc.ARPA via smtptcp;  23 Mar 83 1:50 EST
  3326. Received: From Brl.ARPA via smtptcp;  23 Mar 83 1:53 EST
  3327. Received: From Brl-Bmd.ARPA via smtptcp;  23 Mar 83 1:57 EST
  3328.  
  3329. The .HEX file in AR77: is the result of linking the CC1.REL, CC2.REL,
  3330. CC3.REL, CC4.REL, RUNTIME.REL, CALL..REL, and SYSLIB.REL files.  The linking
  3331. is done with the L80 linker.  The .REL files are produced from the .MAC
  3332. files by usin the M80 macro assembler (both M80 and L80 are from
  3333. Microsoft). SysLIB.REL can be found in ar19:cpm;.  Here is a step by step
  3334. process in case you prefer:
  3335.  
  3336.      First assemble CC1, CC2, CC3, CC4, RUNTIME, and CALL using M80.  Then
  3337. link them all together with the L80 command line:
  3338.           RUNTIME,CC1,CC2,CC3,CC4,CALL,SYSLIB/S,C.HEX/N/E
  3339. This will produce C.HEX..
  3340. 23-Mar-83 02:27:00,1446;000000000000
  3341. Date: 23 March 1983 02:27 EST
  3342. From: Ronald G. Fowler <RGF@mit-mc.arpa>
  3343. Subject:  [RGF: Small-C V2 doc??]
  3344. To: INFO-CPM@mit-mc.arpa
  3345. Received: From Mit-Mc.ARPA via smtptcp;  23 Mar 83 2:26 EST
  3346. Received: From Brl.ARPA via smtptcp;  23 Mar 83 2:35 EST
  3347. Received: From Brl-Bmd.ARPA via smtptcp;  23 Mar 83 2:39 EST
  3348.  
  3349.  
  3350. Date: 23 March 1983 02:21 EST
  3351. From: Ronald G. Fowler <RGF>
  3352. To:   MEAD at USC-ECLB
  3353. cc:   RGF
  3354. Re:   Small-C V2 doc??
  3355.  
  3356. Yes, the HEX file seems to be the linked version of the sources.  I
  3357. was able to generate a new compiler from the sources by assembling
  3358. each, then using L80 to link them together.  I believe the cmmand
  3359. line I used was
  3360.     L80 RUNTIME,CC1,CC2,CC3,CC4,CALL,SYSLIB/S,CC/N/Y/E.
  3361.  
  3362. You'll get some undefined globals from this; they are references
  3363. in the header (at top of each CCx.MAC) that are externals declared and
  3364. never referenced.  They cause no problem, but I edited them out of my
  3365. local versions of the CCx.MAC files, just to keep it clean. Note that
  3366. these globals are for Hexdrix's SMALL-VM package, which is not used
  3367. unless expressly turned on when C is compiled.
  3368.  
  3369. As background, the CCx.MAC files are not the source for the compiler,
  3370. but rather the output of a version 1 compiler (running on a UNIX
  3371. machine).  Hence, to make any substantial changes to the compiler,
  3372. you'd need the CCx.C source files.  I haven't actually gotten as far
  3373. as recompiling the compiler on itself.        --Ron Fowler
  3374. 23-Mar-83 03:45:19,605;000000000000
  3375. Date:     23 Mar 83 3:45:19 EST (Wed)
  3376. From:     Rick Conn <rconn@brl.arpa>
  3377. To:       Eric J. Swenson <EJS@mit-mc.arpa>
  3378. cc:       W8SDZ@mit-mc.arpa, rconn@brl.arpa, info-cpm@brl.arpa
  3379. Subject:  Re:  DU2.COM in AR82:CPM;
  3380. Received: From Brl.ARPA via smtptcp;  23 Mar 83 3:48 EST
  3381. Received: From Brl-Bmd.ARPA via smtptcp;  23 Mar 83 3:56 EST
  3382.  
  3383. I haven't heard of any problems with DU2 since I corrected that queue
  3384. status print bug the other day.  Suggest you check CRCs to see if they
  3385. match (the MIT-MC copy versus yours) and, if so, run GENINS on it and
  3386. make sure it is properly installed.
  3387.  
  3388.     Rick
  3389. 23-Mar-83 09:39:00,717;000000000000
  3390. Date:  23 March 1983 09:39 est
  3391. From:  Boebert.SCOMP@mit-multics.arpa
  3392. Subject:  Apple MBASIC Disk I/O
  3393. To:  info-cpm@brl.arpa
  3394. Received: From Mit-Multics.ARPA via smtptcp;  23 Mar 83 9:45 EST
  3395. Received: From Brl.ARPA via smtptcp;  23 Mar 83 9:48 EST
  3396. Received: From Brl-Bmd.ARPA via smtptcp;  23 Mar 83 10:01 EST
  3397.  
  3398. I am currently enhancing the Eamon Adventure game generator system for
  3399. the Apple and was contemplating converting it to MBASIC for the CP/M
  3400. archives.  The thing does a fair amount of file manipulation.  If I
  3401. convert and debug the thing using the MBASIC that comes with the
  3402. Softcard for the Apple, will the result be compatible with other
  3403. MBASICs, or is the disk I/O different for each of them?
  3404. 23-Mar-83 12:32:00,1464;000000000000
  3405. Date:  23 March 1983 12:32 cst
  3406. From:  Cargo.PD@hi-multics.arpa
  3407. Subject:  Software Tools for CP/M
  3408. To:  info-cpm@brl-bmd.arpa
  3409. Received: From Hi-Multics.ARPA via smtptcp;  23 Mar 83 20:59 EST
  3410. Received: From Brl-Bmd.ARPA via smtptcp;  23 Mar 83 21:10 EST
  3411.  
  3412. I am now on the verge of being able to transfer software from 8 in SSSD
  3413. diskettes into my system. At the top of my list of things I want are the
  3414. tools from the Software Tools Users' Group (STUG), which are based on
  3415. the programs from Software Tools by Kernighan and Plauger. I was
  3416. previously aware of one implementation of these from Unicorn Systems in
  3417. Castro Valley, CA. I came across a mention of another implementation
  3418. from Carousel MicroTools in El Cerrito, CA.
  3419.  
  3420. My questions are: If you have these tools, what kind of experience have
  3421. you had with them (good/bad/not worth the money/etc.)? What kind of
  3422. experience have you had with the vendors? What are the resources that
  3423. you find you need to take advantage of them (disk size, memory size,
  3424. Fortran-80 compiler revision, etc.)?
  3425.  
  3426. I have read the reviews of the Unicorn Systems tools in InfoWorld, and
  3427. Byte, and I have their address. I have NO address for Carousel
  3428. MicroTools, and would appreciate one if anyone knows.
  3429.  
  3430. I am particular interested in comparing these two vendors in terms of
  3431. features, qualitiy of implementation, support, and cost.
  3432.  
  3433. Thanks in advance for all your help.
  3434.  
  3435. ...David S. Cargo (Cargo.PD at HI-Multics)
  3436. 23-Mar-83 12:32:00,1580;000000000000
  3437. Date:  23 March 1983 12:32 cst
  3438. From:  Cargo.PD@hi-multics.arpa
  3439. Subject:  Software Tools for CP/M
  3440. To:  info-cpm@brl-bmd.arpa
  3441. Received: From Hi-Multics.ARPA via smtptcp;  23 Mar 83 20:59 EST
  3442. Received: From Brl-Bmd.ARPA via smtptcp;  23 Mar 83 21:10 EST
  3443. Received: From Brl.ARPA via smtp;  24 Mar 83 18:33 EST
  3444. Received: From Brl-Bmd.ARPA via smtp;  25 Mar 83 14:05 EST
  3445.  
  3446. I am now on the verge of being able to transfer software from 8 in SSSD
  3447. diskettes into my system. At the top of my list of things I want are the
  3448. tools from the Software Tools Users' Group (STUG), which are based on
  3449. the programs from Software Tools by Kernighan and Plauger. I was
  3450. previously aware of one implementation of these from Unicorn Systems in
  3451. Castro Valley, CA. I came across a mention of another implementation
  3452. from Carousel MicroTools in El Cerrito, CA.
  3453.  
  3454. My questions are: If you have these tools, what kind of experience have
  3455. you had with them (good/bad/not worth the money/etc.)? What kind of
  3456. experience have you had with the vendors? What are the resources that
  3457. you find you need to take advantage of them (disk size, memory size,
  3458. Fortran-80 compiler revision, etc.)?
  3459.  
  3460. I have read the reviews of the Unicorn Systems tools in InfoWorld, and
  3461. Byte, and I have their address. I have NO address for Carousel
  3462. MicroTools, and would appreciate one if anyone knows.
  3463.  
  3464. I am particular interested in comparing these two vendors in terms of
  3465. features, qualitiy of implementation, support, and cost.
  3466.  
  3467. Thanks in advance for all your help.
  3468.  
  3469. ...David S. Cargo (Cargo.PD at HI-Multics)
  3470. 23-Mar-83 20:33:09,892;000000000000
  3471. Mail-from: Ethernet host GSB-HOW rcvd at 23-Mar-83 19:33:48-PST
  3472. Date: Wed 23 Mar 83 19:33:09-PST
  3473. From: Edjik <NCP.EGK@su-gsb-how>
  3474. Subject: Re: Software Tools for CP/M
  3475. To: Cargo.PD@hi-multics.arpa
  3476. cc: NCP.EGK@su-gsb-how, info-cpm@brl-bmd.arpa
  3477. In-Reply-To: Your message of Wed 23 Mar 83 12:32:00-PST
  3478. Received: From Su-Dsn.ARPA via smtp;  24 Mar 83 15:40 EST
  3479. Received: From Brl-Vgr.ARPA via smtp;  24 Mar 83 18:28 EST
  3480. Received: From Brl-Bmd.ARPA via smtp;  25 Mar 83 14:03 EST
  3481.  
  3482. Carousel's addr is:
  3483.  
  3484.     Carousel MicroTools, Inc.
  3485.     609 Kerney St
  3486.     EL Cerrito, Ca.  94530
  3487.     (415) 528-1300
  3488.  
  3489. I ran across an ad from them today. The tools come in two kits,
  3490. a binary only and a source kit with extra tool ddevelopment frobs.
  3491.  
  3492. Does anyone know if there is a Software tools implementation
  3493. in the public domain.  does anyone how well built are carousels tools?
  3494.  
  3495. tnx
  3496. -- Edjik
  3497. -------
  3498. 23-Mar-83 23:03:40,410;000000000000
  3499. Date: 24 Mar 1983 01:03:40-EST
  3500. From: reece@nadc.arpa
  3501. To: info-cpm@brl.arpa
  3502. Subject: copyfast program
  3503. Received: From Nadc.ARPA via smtptcp;  24 Mar 83 1:05 EST
  3504. Received: From Brl.ARPA via smtp;  24 Mar 83 18:39 EST
  3505. Received: From Brl-Bmd.ARPA via smtp;  25 Mar 83 15:18 EST
  3506.  
  3507. Does anyone know where I can get the public domain "copyfast" or "fastcopy"
  3508. (I'm not sure which) program for CP/M?
  3509. Jim Reece
  3510. 23-Mar-83 23:41:00,1480;000000000000
  3511. Date: 23 March 1983 23:41 EST
  3512. From: David A. Boulton <SPAM@mit-ai.arpa>
  3513. Subject: Software Tools
  3514. To: Cargo.PD@hi-multics.arpa
  3515. cc: Info-CPM@brl.arpa
  3516. Received: From Mit-Ai.ARPA via smtptcp;  23 Mar 83 23:44 EST
  3517. Received: From Brl.ARPA via smtp;  24 Mar 83 18:35 EST
  3518. Received: From Brl-Bmd.ARPA via smtp;  25 Mar 83 14:08 EST
  3519.  
  3520. Carousel MicroTools is the new name of Unicorn Systems.  I talked to
  3521. them at the West Coast Computer Faire last weekend, and they had a 
  3522. large sign in their booth to that effect.
  3523.  
  3524. I cannot tell you very much about their packages, since I have not
  3525. used them.  They sell two different packages. One is called the
  3526. 'Carousel Use-a-ToolKit' which contains only .COM files of almost all
  3527. of the tools.  The other package, called 'Carousel Build-a-ToolKit'
  3528. contains source for all the tools, the Ratfor preprocessor, and a few
  3529. associated programs.  The binary license version is 3 diskettes, 61
  3530. .COM files.  The source license version is 6 diskettes.  The prices
  3531. are $249 and $395 respectively.  The manual is $40.  They currently
  3532. support only CP/M-80, but they plan on having CP/M-86 and MSDOS
  3533. versions out soon.
  3534.  
  3535. Overall, it looked interesting, but I figured it would be a little too
  3536. cumbersome to be of much real use, so I didn't buy it.  Their address
  3537. is 609 Kearney St. El Cerrito, CA 94530  (415) 528-1300
  3538.  
  3539.         -- Dave
  3540.  
  3541. P.S. I'm amazed! Carousel's flyer was only the fourth one from the 
  3542. top in a 3 pound stack of Faire garbage!
  3543. 24-Mar-83 03:27:00,640;000000000000
  3544. Date: 24 March 1983 03:27 EST
  3545. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  3546. Subject:  Perfect Writer/Formatter/Calc/Filer bugs
  3547. To: MOORE@usc-isib.arpa
  3548. cc: info-cpm@brl.arpa, info-micro@brl.arpa, bridger@rand-unix.arpa
  3549. In-reply-to: Msg of 22 Mar 1983 1534-PST from Jim Moore <MOORE at usc-isib.arpa>
  3550. Received: From Mit-Mc.ARPA via smtptcp;  24 Mar 83 4:26 EST
  3551. Received: From Brl.ARPA via smtp;  24 Mar 83 18:48 EST
  3552. Received: From Brl-Bmd.ARPA via smtp;  25 Mar 83 17:01 EST
  3553.  
  3554. saw a recent demonstration in which Perfect Speller passed about
  3555. 500 misspelled words that were later caught by The Word Plus.
  3556. If that's relevent (sp)..
  3557. 24-Mar-83 03:47:00,720;000000000000
  3558. Date: 24 March 1983 03:47 EST
  3559. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  3560. Subject:  CP/M-Plus
  3561. To: CSTROM@mit-mc.arpa
  3562. cc: INFO-CPM@brl.arpa, mknox@utexas-11.arpa
  3563. In-reply-to: Msg of 16 Mar 1983 18:34 EST from Charlie Strom <CSTROM at mit-mc.arpa>
  3564. Received: From Mit-Mc.ARPA via smtptcp;  24 Mar 83 3:50 EST
  3565. Received: From Brl.ARPA via smtp;  24 Mar 83 18:47 EST
  3566. Received: From Brl-Bmd.ARPA via smtp;  25 Mar 83 15:42 EST
  3567.  
  3568. Investiagations at CompuPro indicate that CPM+ is SLOWER than
  3569. CPM 2.2x, and most of the CP/M + features can be had by doing a
  3570. proper bios for 2.2x...  I have not much more info.  My bright
  3571. friend is at CompuPro just now, and that's a phone report.  I do
  3572. not think I misunderstood..
  3573. 24-Mar-83 03:52:00,746;000000000000
  3574. Date: 24 March 1983 03:52 EST
  3575. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  3576. Subject:  Small micro-computers
  3577. To: mknox@utexas-11.arpa
  3578. cc: info-cpm@brl.arpa
  3579. In-reply-to: Msg of 15 Mar 1983 at 2013-CST from mknox at utexas-11.arpa
  3580. Received: From Mit-Mc.ARPA via smtptcp;  24 Mar 83 3:54 EST
  3581. Received: From Brl.ARPA via smtp;  24 Mar 83 18:47 EST
  3582. Received: From Brl-Bmd.ARPA via smtp;  25 Mar 83 15:42 EST
  3583.  
  3584. I recommend S-100 buss equipment.  My own is CompuPro (Godbout)
  3585. and I never have problems.  There are color boards for the buss
  3586. if you want color, otherwise a terminal works.  I have 8085/8088
  3587. dual processor which gives both 8 and 16 bit capability.
  3588. Z-100 is pretty good, but it is BIG and no detachable keyboard.
  3589. Look at it..
  3590. 24-Mar-83 03:59:00,2077;000000000000
  3591. Date: 24 March 1983 03:59 EST
  3592. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  3593. Subject:  godbout
  3594. To: goldfarb.ucf-cs@rand-relay.arpa
  3595. cc: CSTROM@mit-mc.arpa, info-cpm@brl.arpa
  3596. In-reply-to: Msg of 15 Mar 1983 04:12:20-PST from goldfarb.ucf-cs at rand-relay.arpa
  3597. Received: From Mit-Mc.ARPA via smtptcp;  24 Mar 83 4:01 EST
  3598. Received: From Brl.ARPA via smtp;  24 Mar 83 18:47 EST
  3599. Received: From Brl-Bmd.ARPA via smtp;  25 Mar 83 15:44 EST
  3600.  
  3601. The problem is that they're in a technological fuge just now;
  3602. the Faire wasted them, now my crazy friend Tpony is up there.
  3603. And they  are moving.  I wanted to read them the copy I was
  3604. writing on them in my Faire report and I couldn't get past the
  3605. answering service; fortunately somebody in there called me.
  3606.     The 68000 is a problem; there are aabout two copies of
  3607. CPM-68K in existence that sort of work, and there seem to be
  3608. some fatal bugs in the stuff.  Digital keeps recalling and
  3609. revising.  It will all be made to work, but some patience is
  3610. going to be rquired.
  3611.     The problem t here is that there's not really enough
  3612. technical staff (they'd hire more if they could find them) and
  3613. the place is not well organized; instead, the programmers and
  3614. engineers are happy.  As hardware goes that's a great place to
  3615. deal with..  For software, I can see you would have trouble
  3616. because most of the Godbout people don't, deep down inside,
  3617. believe in software.  They don't even use computers in much of
  3618. their business application.  This seems crazy, but...
  3619.     They got one hell of a hardware outfit, though, and I
  3620. always recommend anybody buying their stuff deal with a good
  3621. systems consultant;; there's enough slack in the prices that you
  3622. can get systems for the advertised price through a systems
  3623. consultant and get the consultant free;  or you can buy at
  3624. discounts and do your own;  but if you rely on getting the
  3625. Godbout people on the phone, you may have leaned on a weak reed.
  3626.     I haven't solved the reachability problem except through
  3627. one secret technique involving strange golden liquid known as
  3628. Grand marnier./....
  3629. 24-Mar-83 04:12:00,1096;000000000000
  3630. Date: 24 March 1983 04:12 EST
  3631. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  3632. Subject:  godbout
  3633. To: goldfarb.ucf-cs@rand-relay.arpa
  3634. cc: CSTROM@mit-mc.arpa, info-cpm@brl.arpa
  3635. In-reply-to: Msg of 15 Mar 1983 04:12:26-PST from goldfarb.ucf-cs at Rand-Relay
  3636. Received: From Mit-Mc.ARPA via smtptcp;  24 Mar 83 4:16 EST
  3637. Received: From Brl.ARPA via smtp;  24 Mar 83 18:48 EST
  3638. Received: From Brl-Bmd.ARPA via smtp;  25 Mar 83 15:46 EST
  3639.  
  3640. I wish this hadn't happened; in fact, I wish they'd stop selling
  3641. boards before they have software.  The trouble is, Godbout's
  3642. people don't BELIEVE in software.  They put out great boards and
  3643. hope someone will figure out a way to make use of them in good
  3644. systems.  Often people do, but the 68000 hAs been a kind of
  3645. disaster, in that the OS's that were to materialize didn't.
  3646.     There is an operating system for the 68K board.  It is
  3647. in FORTH.  They use it to test the board.  You will not want it.
  3648. I could have it and decided against it.
  3649.     I hate to say it, but my counsel is PATIENCE.  All will
  3650. be well, and reasonably soon.  But soon could be weeks.
  3651. 24-Mar-83 18:25:00,934;000000000000
  3652. Date: 24 March 1983 18:25 EST
  3653. From: Charlie Strom <CSTROM@mit-mc.arpa>
  3654. Subject:  CP/M-Plus
  3655. To: POURNE@mit-mc.arpa
  3656. cc: CSTROM@mit-mc.arpa, INFO-CPM@brl.arpa, mknox@utexas-11.arpa
  3657. In-reply-to: Msg of 24 Mar 1983 03:47 EST from Jerry E. Pournelle <POURNE>
  3658. Received: From Mit-Mc.ARPA via smtp;  25 Mar 83 20:26 EST
  3659. Received: From Brl.ARPA via smtp;  26 Mar 83 1:15 EST
  3660. Received: From Brl-Bmd.ARPA via smtp;  26 Mar 83 1:57 EST
  3661.  
  3662. I find it very difficult to believe that a properly written banked
  3663. CP/M Plus is slower than 2.2, though this migt be the case for
  3664. non-banked (minimal) implementation. All of the people I have spoken
  3665. to who have diddled with PLUS thus far say it is considerably faster
  3666. in disk I/O, directory searches, etc., and it makes emminent sense
  3667. that it ought to be. I hope to be able to give a more first-hand
  3668. report in the not too distant future. Sounds like sour grapes to me
  3669. emanating from Oakland!
  3670. 25-Mar-83 09:46:00,862;000000000000
  3671. Date:     25 Mar 83 12:46-EDT (Fri)
  3672. From: Charles Hutchinson <hutchinson.UMass-ECE@udel-relay.arpa>
  3673. Return-Path: <hutchinson.UMass-ECE.UMASS-ECE@UDel-Relay>
  3674. Subject:  poly-HST, poly-TRM, poly-XFR
  3675. To: INFO-CPM@umass-ece
  3676. Cc: HUTCHINSON@umass-ece
  3677. Via:  UMASS-ECE; 25 Mar 83 21:03-EST
  3678. Received: From Mit-Mc.ARPA via smtp;  26 Mar 83 6:04 EST
  3679. Received: From Brl.ARPA via smtp;  26 Mar 83 6:16 EST
  3680. Received: From Brl-Bmd.ARPA via smtp;  26 Mar 83 6:23 EST
  3681.  
  3682. HellO!
  3683.     Does anyone out there have any experience with poly-HST, poly-TRM
  3684. or poly-XFR, a set of file-transfer programs put out by Polygon Associates
  3685. (Missouri)
  3686.     I recently got them for my Rainbow 100, but have to get HST
  3687. up on a Vax or another CP/M system.
  3688.  
  3689.     Does anyone know if these use the Christensen protocol?
  3690.  
  3691.             Thanks,
  3692.                     John Hutchinson
  3693.  
  3694.                 (HUTCHINSON.UMASS-ECE@UDEL-RELAY)
  3695. 26-Mar-83 13:49:22,772;000000000000
  3696. Date: 26 Mar 1983 12:49:22-PST
  3697. From: Jim Gilbreath <CCVAX.gil@nosc-cc.arpa>
  3698. Reply-to: CCVAX.gil@nosc-cc.arpa
  3699. To: info-cpm@brl.arpa, pourne@mit-mc.arpa
  3700. Subject: cpm plus on godbout
  3701. Received: From Nosc-Cc.ARPA via smtp;  26 Mar 83 15:54 EST
  3702. Received: From Brl.ARPA via smtp;  26 Mar 83 20:31 EST
  3703. Received: From Brl-Bmd.ARPA via smtp;  26 Mar 83 20:33 EST
  3704.  
  3705.  
  3706. Compupro's cpm 2.2 is so slow on floppies driven by the disk 1
  3707. board due to some designs compromises that it is not surprising
  3708. that plus is even slower on the first try.  It takes some software
  3709. smarts to make any bios perform to the limits of the hardware, and
  3710. that isn't likely to happen on the first few tries.  Unfortunately
  3711. Godbout doesn't keep trying to improve things once they get it to
  3712. work.
  3713. 26-Mar-83 14:34:00,719;000000000000
  3714. Date: 26 March 1983 14:34 EST
  3715. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  3716. Subject: Wizzard of OZ phone list
  3717. To: Info-Cpm@brl.arpa
  3718. Received: From Mit-Mc.ARPA via smtp;  26 Mar 83 14:33 EST
  3719. Received: From Brl.ARPA via smtp;  26 Mar 83 14:47 EST
  3720. Received: From Brl-Bmd.ARPA via smtp;  26 Mar 83 20:21 EST
  3721.  
  3722. If there's anyone out there who has contact with the
  3723. "Wizzard of OZ" remote CP/M system, I would appreciate it
  3724. very much if they were told that their list of RCPMs is
  3725. over a year out of date and inaccurately lists my system.
  3726. It not only has the wrong (old) phone number, it does not
  3727. show that my system is a "ring-back" one and many people are
  3728. calling and not getting an answer because of this.
  3729. --Keith
  3730. 26-Mar-83 16:18:00,459;000000000000
  3731. Date: 26 Mar 1983 at 1718-CST
  3732. From: mknox@utexas-11.arpa
  3733. Subject: ATON
  3734. To: info-cpm@brl.arpa
  3735. Received: From Utexas-11.ARPA via smtp;  26 Mar 83 18:21 EST
  3736. Received: From Brl.ARPA via smtp;  26 Mar 83 20:34 EST
  3737. Received: From Brl-Bmd.ARPA via smtp;  26 Mar 83 20:34 EST
  3738.  
  3739.  
  3740. Does anyone know if ATON, a new implementor of CP/M-2.2 for the Tandy Model-II
  3741. has folded?  I have been trying to call them for two weeks and get no answer
  3742. at all.  
  3743.  
  3744. -------
  3745. 27-Mar-83 03:19:00,981;000000000000
  3746. Date: 27 March 1983 03:19 EST
  3747. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  3748. Subject:  cpm plus on godbout
  3749. To: CCVAX.gil@nosc-cc.arpa
  3750. cc: info-cpm@brl.arpa
  3751. In-reply-to: Msg of 26 Mar 1983 12:49:22-PST from Jim Gilbreath <CCVAX.gil at nosc-cc.arpa>
  3752. Received: From Mit-Mc.ARPA via smtp;  27 Mar 83 3:19 EST
  3753. Received: From Brl.ARPA via smtp;  27 Mar 83 3:28 EST
  3754. Received: From Brl-Bmd.ARPA via smtp;  27 Mar 83 3:36 EST
  3755.  
  3756. It all depends on the BIOS.  We have 2.2 on 2S2D floppies (1.1
  3757. mByte/floppy) that's rather fast, and also has M drive and N
  3758. drive.  This is waht is now distributed with the system, I
  3759. believe.
  3760.     It is certainly true that once Compupro gets the
  3761. hardware out the door, they don't worry about the software.  Len
  3762. Ott, their softwaerre man, hs planty smarts, but  not much
  3763. support.  Of course this makes for some good opportunities,
  3764. since the hardware is DAMN good; and some people have done well
  3765. writing  optimization software for Compupro systems..
  3766. 27-Mar-83 03:27:00,620;000000000000
  3767. Date: 27 March 1983 03:27 EST
  3768. From: Jerry E. Pournelle <POURNE@mit-mc.arpa>
  3769. Subject:  CP/M-Plus
  3770. To: CSTROM@mit-mc.arpa
  3771. cc: INFO-CPM@brl.arpa, mknox@utexas-11.arpa
  3772. In-reply-to: Msg of 24 Mar 1983 18:25 EST from Charlie Strom <CSTROM at mit-mc.arpa>
  3773. Received: From Mit-Mc.ARPA via smtp;  27 Mar 83 3:27 EST
  3774. Received: From Brl.ARPA via smtp;  27 Mar 83 3:39 EST
  3775. Received: From Brl-Bmd.ARPA via smtp;  27 Mar 83 3:47 EST
  3776.  
  3777. Serves me right for reporting second hand information.  I do not
  3778. know.  I repeated what I was told.  I will not do so in future.
  3779. I have no further information.  You are undoubtedly right..
  3780. 27-Mar-83 04:26:00,718;000000000000
  3781. Date: 27 March 1983 04:26 EST
  3782. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  3783. Subject: UNERA16.ASM now available
  3784. To: INFO-CPM@brl.arpa
  3785. Received: From Mit-Mc.ARPA via smtp;  27 Mar 83 4:25 EST
  3786. Received: From Brl.ARPA via smtp;  27 Mar 83 4:34 EST
  3787. Received: From Brl-Bmd.ARPA via smtp;  27 Mar 83 4:53 EST
  3788.  
  3789. The latest version of UNERA, the public-domain CP/M
  3790. file "un-erasing" program is now available on MIT-MC.
  3791. See also the DOC file for ver 1.5, which was previously
  3792. not available on MC.  The latest version fixes a bug which
  3793. prevented the program from finding the erased file on a hard
  3794. disk system where the directory maximum is a large number
  3795. of names.
  3796.   AR23:CPM;UNERA 16ASM    and
  3797.   AR23:CPM;UNERA 15DOC
  3798. 27-Mar-83 04:37:00,1209;000000000000
  3799. Date: 27 March 1983 04:37 EST
  3800. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  3801. Subject: Osborne MODEM program update
  3802. To: INFO-CPM@brl.arpa
  3803. Received: From Mit-Mc.ARPA via smtp;  27 Mar 83 4:36 EST
  3804. Received: From Brl.ARPA via smtp;  27 Mar 83 4:45 EST
  3805. Received: From Brl-Bmd.ARPA via smtp;  27 Mar 83 4:54 EST
  3806.  
  3807. Osborne users will want to try OTERM404 (with possible update to
  3808. OTERM405 if needed).  This is an exapanded version of the older
  3809. OTERM401 which was previously available on MIT-MC.  The present
  3810. version offers several modes of operation, including terminal,
  3811. MODEM2-compatible file transfers, and CompuServe protocol
  3812. file transfers - all in one package!  Sorry, the source is not
  3813. available, but the author can be contacted on CompuServe's
  3814. CP-MIG.
  3815.  
  3816.   AR41:CPM;OTERM 404COM   the .COM file stored in ITS format
  3817.   AR41:CPM:OTERM 405SUB   SUBMIT file for updating to ver. 4.05 if needed.
  3818.  
  3819. older files still available:
  3820.   AR41:CPM;OTERM 401DOC   documentation
  3821.   AR41:CPM;OTSET 4COM     a configuration program for OTERM
  3822.   AR41:CPM;OTSET 4DOC     documentation for configurator
  3823.  
  3824. If you can't FTP ITS format COM files, send a request to
  3825. INFO-CPM-REQUEST@BRL asking for a HEX file to be made.
  3826. 27-Mar-83 14:32:44,483;000000000000
  3827. Date:     27 Mar 83 14:32:44 EST (Sun)
  3828. From:     George Keller (IBD) <keller@brl.arpa>
  3829. To:       info-cpm@brl.arpa
  3830. Subject:  Typing tutor
  3831. Received: From Brl.ARPA via smtp;  27 Mar 83 14:43 EST
  3832. Received: From Brl-Bmd.ARPA via smtp;  27 Mar 83 14:48 EST
  3833.  
  3834. I need a pointer to a CP/M typing tutor program, either free
  3835. or for $.  With all the power of this box, surely someone has
  3836. a typing-teaching program I could use to help non-typists make
  3837. better use of it.     
  3838.  
  3839. George
  3840. 27-Mar-83 19:56:00,1876;000000000000
  3841. Date: 27 March 1983 19:56 EST
  3842. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  3843. Subject: FILE13.ASM/DOC available
  3844. To: INFO-CPM@mit-mc.arpa
  3845. Received: From Mit-Mc.ARPA via smtp;  27 Mar 83 19:58 EST
  3846. Received: From Brl.ARPA via smtp;  27 Mar 83 20:10 EST
  3847. Received: From Brl-Bmd.ARPA via smtp;  27 Mar 83 20:14 EST
  3848.  
  3849. A new version of FILEFIND, now renamed to FILE, is now available on
  3850. MIT-MC.  It's in AR22:CPM;FILE 13ASM and AR22:CPM;FILE 13DOC.  Here's
  3851. what the latest revisor has to say about it:
  3852.  
  3853. ---
  3854. TOPIC  :  FILE.COM
  3855. FROM   :  IRV HOFF
  3856. DATE   :  13 FEB 83
  3857.  
  3858. NOTE:  ORIGINAL NAME WAS 'FILE'.  RENAMED EARLY 1981 TO 'FILEFIND' BY
  3859.        SOMEONE OTHER THAN ORIGINAL AUTHOR.  NOW CORRECTLY NAMED 'FILE'.
  3860.  
  3861. SYSOPS:  THIS IS AN IDEAL PGM FOR USE AS  A0>FILE.COM  TO AUGMENT (OR
  3862.          REPLACE THINGS LIKE  DIR NAME*.* $U0AD.
  3863.  
  3864.      This program finds a requested file on any/all disk drives and any
  3865. user area allowed by the system.  Just say:
  3866. A>FILE NAME*.*
  3867.      and it will find any file commencing with 'NAME' on any disk drive
  3868. and any user area.  It doesn't matter what user area or drive you are
  3869. in when you start, it commences at A0:  
  3870.  
  3871.      This takes the place of things like:  A>DIR NAME*.* $U0AD,  or
  3872. A>DIR NAME $AD, etc.  (Those commands normally commence at whatever
  3873. drive you are already on.  If starting from D3, you must reset to A0:
  3874. before commencing the search or it will skip the A: B: and C: dives com-
  3875. pletely.  'FILE' starts at A0: regardless, making it very convenient to
  3876. use.)  It is an universal program that adapts equally well to CBBS, RBBS,
  3877. DATATECH, OXGATE and other similar RCPM systems.  It is easy to use and
  3878. gives all users on all systems a common command.
  3879.  
  3880.      (You can also get the entire directory of all drives and all avail-
  3881. able user areas by saying:
  3882.  
  3883. A>FILE *.*
  3884.  
  3885.                                 - Irv Hoff
  3886. 27-Mar-83 20:21:45,1785;000000000000
  3887. Date:     27 Mar 83 20:21:45 EST (Sun)
  3888. From:     Keith Petersen <w8sdz@brl.arpa>
  3889. To:       Dick <MEAD@usc-eclb.arpa>
  3890. cc:       Info-Micro@brl.arpa, Info-Cpm@brl.arpa
  3891. Subject:  PMMI 103/212 S-100 modem
  3892. Received: From Brl.ARPA via smtp;  27 Mar 83 20:31 EST
  3893. Received: From Brl-Bmd.ARPA via smtp;  27 Mar 83 20:35 EST
  3894.  
  3895. It is supposed to be ready for sale to the public in June.  I wil
  3896. be getting one in about two weeks to do some Beta testing and to
  3897. write some software for PMMI.  I'll let you know how it works when
  3898. I get it.  It probably won't support 600 baud any more than a
  3899. normal Racal-Vadic modem because it is just that - a cooperative
  3900. venture between PMMI and Racal-Vadic, with PMMI designing the entire
  3901. S-100 interface and Racal-Vadic building their 103/212 programmable
  3902. modem on the board.  It is NOT a piggy-back.  It's a fresh design
  3903. from PMMI.  PMMI even wrote some new software for the Microprocessor
  3904. that's on the board.
  3905.  
  3906. This board has many features, including: dial-tone detect, touch-tone
  3907. dialing/rotary dialing, redialing of last number, distant end ringing
  3908. detect, voice detection (i.e. got a human instead of another modem,
  3909. better hang up), busy detect, etc.  Lots of new and interesting
  3910. features.  Oh yes, it's possible to count the rings when deciding
  3911. whether to answer a call or not.  This means that call-back operation
  3912. IS practical with the new PMMI 300/1200 baud modem (the DC Hayes
  3913. Smart modem won't do that).
  3914.  
  3915. The board meets the full IEEE S-100 specs, including the ability to
  3916. operate correctly with systems using 5 mhz clocks (it may actually
  3917. work above this, the specs are not final yet).  It looks like a
  3918. normal USART-type serial port to the system, making it easy to
  3919. program.  It also has maskable interrupt capability.
  3920. 27-Mar-83 20:23:46,684;000000000000
  3921. Date: 27 Mar 1983 19:23:46-PST
  3922. From: Jim Gilbreath <CCVAX.gil@nosc-cc.arpa>
  3923. Reply-to: CCVAX.gil@nosc-cc.arpa
  3924. To: POURNE@mit-mc.arpa
  3925. Subject: Re:  cpm plus on godbout
  3926. Cc: info-cpm@brl.arpa
  3927. Received: From Nosc-Cc.ARPA via smtp;  27 Mar 83 22:30 EST
  3928. Received: From Brl.ARPA via smtp;  27 Mar 83 22:37 EST
  3929. Received: From Brl-Bmd.ARPA via smtp;  27 Mar 83 22:41 EST
  3930.  
  3931. Yeh, I have the same stuff, but it's still slower than the
  3932. humble Jade controller due to the dumb way the disk 1 scans
  3933. the drives all the time and in the process drops the select
  3934. the head flapping.
  3935. A fix is supposedly coming in the new model of the disk 1,
  3936. but sorry, no updates to the existing customers!
  3937. 28-Mar-83 07:32:00,485;000000000000
  3938. Date: 28 March 1983 07:32 EST
  3939. From: Eric Stork <STORK@mit-mc.arpa>
  3940. To: info-cpm@brl.arpa
  3941. Received: From Mit-Mc.ARPA via smtp;  28 Mar 83 7:33 EST
  3942. Received: From Brl.ARPA via smtp;  28 Mar 83 14:56 EST
  3943. Received: From Brl-Bmd.ARPA via smtp;  28 Mar 83 16:29 EST
  3944.  
  3945. Subject: SANYO MICRO
  3946. Am contemplating the purchase of the SANYO package (advertised for
  3947. $1795 in Washington DC area).   Anyone have any experience with it?
  3948. WIll appreciate any advice or cautions.
  3949. STORK at MIT-MC
  3950. 28-Mar-83 07:43:05,509;000000000000
  3951. Date: 28 Mar 83 7:43:05 PST (Monday)
  3952. From: NNicoll.ES@parc-maxc.arpa
  3953. Subject: Re: Typing tutor
  3954. In-reply-to: keller@brl.arpa's message of 27 Mar 83 14:32:44 EST (Sun)
  3955. To: George Keller (IBD) <keller@brl.arpa>
  3956. cc: info-cpm@brl.arpa
  3957. Received: From Parc-Maxc.ARPA via smtp;  28 Mar 83 10:42 EST
  3958. Received: From Brl.ARPA via smtp;  28 Mar 83 17:07 EST
  3959. Received: From Brl-Bmd.ARPA via smtp;  28 Mar 83 17:57 EST
  3960.  
  3961. I have also been looking for such a program. Please c: me any information.  Thanks
  3962.  
  3963. \Nick
  3964. 28-Mar-83 15:00:38,650;000000000000
  3965. Date: 28-Mar-83 17:00:38-EST
  3966. From: jalbers@bnl.arpa
  3967. Subject: help
  3968. To: Info-CPM@mit-mc.arpa, with@brl.arpa, Ozzie@brl.arpa, 
  3969.     communications@brl.arpa, software@brl.arpa
  3970. Received: From Mit-Mc.ARPA via smtp;  28 Mar 83 17:06 EST
  3971. Received: From Brl.ARPA via smtp;  28 Mar 83 17:28 EST
  3972. Received: From Brl-Bmd.ARPA via smtp;  28 Mar 83 18:03 EST
  3973.  
  3974.     Do to the upgrade memory changes when changeing from a single density Ozzie to a
  3975. Double Density Ozzie, most Communications software is useless.  Does anyone know of an 'upgraded' 
  3976. version of OTERM405 or it's commercial counterpart TERM5000 for the DD Ozzie.
  3977.     Please help!!
  3978.  
  3979.                 jalbers@bnl
  3980. 28-Mar-83 17:25:50,1026;000000000000
  3981. Date: 28 Mar 83 17:25:50 PST (Mon)
  3982. From: David Allen Gewirtz <dag%UCBARPA@ucb-vax.arpa (David Allen Gewirtz)>
  3983. Subject: ITS Headers on SQ files
  3984. Message-Id: <8303290125.AA01000@UCBARPA.ARPA>
  3985. Received: by UCBARPA.ARPA (3.332/3.19)
  3986.     id AA01000; 28 Mar 83 17:25:50 PST (Mon)
  3987. Received: from UCBARPA.ARPA by UCBVAX.ARPA (3.332/3.19)
  3988.     id AA25820; 28 Mar 83 20:08:12 PST (Mon)
  3989. To: info-cpm@brl.arpa
  3990. Received: From Ucb-Vax.ARPA via smtp;  28 Mar 83 23:11 EST
  3991. Received: From Brl.ARPA via smtp;  28 Mar 83 23:14 EST
  3992. Received: From Brl-Bmd.ARPA via smtp;  28 Mar 83 23:18 EST
  3993.  
  3994.  
  3995. I had requested a fix to the files (all the ZCPR2 files)
  3996. which have been squished and now cannot be unsqueezed.
  3997.  
  3998. It is my understanding that there is something in the ITS
  3999. format that prevents a UNIX machine from unsqueezing these
  4000. files FTP'ed directly off ITS.
  4001.  
  4002. I also understand that there is a filter program out there
  4003. to remedy this problem.
  4004.  
  4005. Help in this matter is urgently requested.  HELP!!!
  4006.  
  4007. Thanbks
  4008. (or even thanks)
  4009.  
  4010. David
  4011. 28-Mar-83 23:15:51,528;000000000000
  4012. Date: 28 Mar 1983 22:15:51-PST
  4013. From: CCVAX.revc@nosc-cc.arpa
  4014. To: Info-CPM@mit-mc.arpa, Ozzie@brl.arpa, communications@brl.arpa, 
  4015.     jalbers@bnl.arpa, software@brl.arpa, with@brl.arpa
  4016. Subject: Re:  help
  4017. Received: From Mit-Mc.ARPA via smtp;  29 Mar 83 2:07 EST
  4018. Received: From Brl.ARPA via smtp;  29 Mar 83 2:11 EST
  4019. Received: From Brl-Bmd.ARPA via smtp;  29 Mar 83 2:21 EST
  4020.  
  4021. I'm having no trouble with Modem796 or Oterm 4.04.
  4022. True, Oterm doesn't restore the standard function
  4023. keys, but a cold boot always works. - Bob
  4024. 29-Mar-83 01:19:00,935;000000000000
  4025. Date: 29 March 1983 01:19 EST
  4026. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  4027. Subject: MDM705 config file for Kaypro
  4028. To: Info-Cpm@brl.arpa
  4029. Received: From Mit-Mc.ARPA via smtp;  29 Mar 83 2:05 EST
  4030. Received: From Brl.ARPA via smtp;  29 Mar 83 2:10 EST
  4031. Received: From Brl-Bmd.ARPA via smtp;  29 Mar 83 2:20 EST
  4032.  
  4033. Kaypro owners interested in MDM705 will want to look at
  4034. AR61:CPM;MDM705 KPASM which I've just uploaded.  It's the
  4035. configuration area for the Kayro with some interesting added
  4036. features over the original Kaypro overlay.
  4037.  
  4038. --forwarded from my RCPM---
  4039. Date: 3/28/83
  4040. From: Bruce Kargol
  4041. To:   All
  4042. Re:   Improved Kaypro config file for MDM705
  4043.  
  4044. I made a few mods to the Kaypro config file and have
  4045. uploaded it here.  Added ability to set for 600 and 9600
  4046. baud.  (Good @ 600 with some Smartmodems and 9600 for direct
  4047. connections).  Added clrscreen and clreos. Works fine. 
  4048.  
  4049.                                     Bruce.
  4050. 29-Mar-83 01:45:00,518;000000000000
  4051. Date: 29 March 1983 01:45 EST
  4052. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  4053. Subject: CPM;CPM DIRLST updated
  4054. To: Info-Cpm@brl.arpa
  4055. Received: From Mit-Mc.ARPA via smtp;  29 Mar 83 2:14 EST
  4056. Received: From Brl.ARPA via smtp;  29 Mar 83 2:22 EST
  4057. Received: From Brl-Bmd.ARPA via smtp;  29 Mar 83 2:32 EST
  4058.  
  4059. The list of all MIT-MC CPM directories has been updated as of today.
  4060. If you cannot FTP this file, send a message to Info-Cpm-Request and
  4061. you will be put on a list to receive these listings periodically.
  4062. --Keith
  4063. 29-Mar-83 03:34:01,764;000000000000
  4064. Received: from GSB-HOW with Pup; Tue 29 Mar 83 02:38:05-PST
  4065. Date: Tue 29 Mar 83 02:34:01-PST
  4066. From: Edjik <NCP.EGK@su-gsb-how>
  4067. Subject: Re: ITS Headers on SQ files
  4068. To: dag%UCBARPA@ucb-arpa.arpa
  4069. cc: info-cpm@brl.arpa, NCP.EGK@su-gsb-how
  4070. In-Reply-To: Your message of Mon 28 Mar 83 17:25:50-PST
  4071. Received: From Su-Score.ARPA via smtp;  29 Mar 83 5:44 EST
  4072. Received: From Brl.ARPA via smtp;  29 Mar 83 5:53 EST
  4073. Received: From Brl-Bmd.ARPA via smtp;  29 Mar 83 6:00 EST
  4074.  
  4075. Umm, saying that there is something in the ITS format that prevents
  4076. files from being unsqueezed by a unix system, once ftp'd off ITS doesnt
  4077. saying anything against ITS, its does say something against unix.  if the
  4078. brain damage is in unix, dont blame it on its.
  4079. <end of flame>
  4080. -------
  4081. 29-Mar-83 12:18:24,1520;000000000000
  4082. Date: Tue Mar 29 1983 11:18:24-PST
  4083. From: Lauren Weinstein <vortex!lauren@lbl-csam.arpa>
  4084. Subject: ITS binary format
  4085. Return-Path: <vortex!lauren@LBL-CSAM.ARPA>
  4086. Message-Id: <8302292345.24224@LBL-CSAM.ARPA>
  4087. Received: by LBL-CSAM.ARPA (3.284 [1/5/83])
  4088.     id AA24224; 29-Mar-83 15:45:37-PST (Tue)
  4089. To: info-cpm@brl.arpa
  4090. Received: From Lbl-Csam.ARPA via smtp;  29 Mar 83 18:44 EST
  4091. Received: From Brl.ARPA via smtp;  29 Mar 83 18:48 EST
  4092. Received: From Brl-Bmd.ARPA via smtp;  29 Mar 83 18:52 EST
  4093.  
  4094. I've had lots of problems with "com" binary files on ITS over the years,
  4095. and not just from Unix systems -- so don't blame Unix!  The issue is that
  4096. ITS stores these files in a sort of "packed" format that is oriented
  4097. around its 36 bit words, and includes some other header information
  4098. as well.  For example, let's say you have a file that you uploaded
  4099. to ITS using the LMODEM "com file" mode.  Now you try to FTP the file
  4100. from ITS to a non-ITS system (in binary/image mode).  The file you get
  4101. has this packing and strange header information included.  Small wonder
  4102. that squeezed files won't unsqueeze!  When instead you download such a file
  4103. through LMODEM, ITS performs the conversions and you get a "proper"
  4104. binary file again.
  4105.  
  4106. Ideally, ITS should have a special FTP mode which would convert
  4107. the ITS com file format back to "real" binary on the fly during
  4108. transfer.  I suspect that the ITS folks never considered FTP'ing
  4109. of com binaries to non-ITS systems to be a "high-demand" type project.
  4110.  
  4111. --Lauren--
  4112. 29-Mar-83 16:39:38,1007;000000000000
  4113. Date: 29 Mar 83 16:39:38 PST (Tue)
  4114. From: David Allen Gewirtz <dag%UCBARPA@ucb-vax.arpa (David Allen Gewirtz)>
  4115. Subject: Re: ITS Headers on SQ files
  4116. Message-Id: <8303300039.AA04489@UCBARPA.ARPA>
  4117. Received: by UCBARPA.ARPA (3.332/3.19)
  4118.     id AA04489; 29 Mar 83 16:39:38 PST (Tue)
  4119. Received: from UCBARPA.ARPA by UCBVAX.ARPA (3.332/3.19)
  4120.     id AA18780; 29 Mar 83 23:02:56 PST (Tue)
  4121. To: NCP.EGK%SU-GSB-HOW@su-score.arpa, dag%UCBARPA@ucb-arpa.arpa
  4122. Cc: NCP.EGK@su-gsb-how, info-cpm@brl.arpa
  4123. Received: From Ucb-Vax.ARPA via smtp;  30 Mar 83 4:01 EST
  4124. Received: From Brl.ARPA via smtp;  30 Mar 83 6:20 EST
  4125. Received: From Brl-Bmd.ARPA via smtp;  30 Mar 83 6:31 EST
  4126.  
  4127. Gee, your comment was really helpful.
  4128.  
  4129. My interest is not which machine has a problem, though you
  4130. personally seem to.  My interest instead was a simple
  4131. need of converting one format to another.  If you cannot
  4132. separate reality from raving, I respectfully suggest that
  4133. you have a problem that needs help.
  4134.  
  4135. Keeping an open mind,
  4136.  
  4137. David
  4138. 30-Mar-83 00:06:00,2563;000000000000
  4139. Date: 30 March 1983 00:06 EST
  4140. From: Gail Zacharias <GZ@mit-mc.arpa>
  4141. Subject:  ITS binary format
  4142. To: info-cpm@brl.arpa, vortex!lauren@lbl-csam.arpa
  4143. In-reply-to: Msg of Tue Mar 29 1983 11:18:24-PST from Lauren Weinstein <vortex!lauren at lbl-csam.arpa>
  4144. Received: From Mit-Mc.ARPA via smtp;  30 Mar 83 14:07 EST
  4145. Received: From Brl.ARPA via smtp;  30 Mar 83 14:26 EST
  4146. Received: From Brl-Bmd.ARPA via smtp;  30 Mar 83 15:00 EST
  4147.  
  4148. There are two separate issues here.  First is packing 8 bit bytes into PDP-10's
  4149. 36 bit words.  This is unavoidable, standard, and the ITS ftp server deals with
  4150. it just fine.  The problem is getting the unix user end to tell ITS to do it.
  4151. SEE BELOW FOR HOW TO DO THIS.
  4152.  
  4153. The second problem is the 4-byte header put in the binary CP/M files stored in
  4154. the CPM; directory. This has nothing to do with ITS, and was a decision made by
  4155. those involved with maintaining this directory and related programs.  There is
  4156. no reason on earth for ITS system programs such as FTP to understand the
  4157. conventions used by a small segment of the user population (and believe it or
  4158. not, providing CP/M software to unix hackers is not MC's rason d'etre).  In any
  4159. case, SEE BELOW FOR HOW TO DEAL WITH THIS.
  4160.  
  4161. I might suggest that instead of dreaming about what ITS FTP could or could not
  4162. be made to do, someone fix umodem to recognize those header bytes (they are
  4163. 93H,3AH,D8H,00H) and strip them off.  umodem could also use them for their
  4164. intended purpose, differentiating between ascii and binary files, so the user
  4165. wouldn't have to give a "b" switch (I assume that's what the -sb below does).
  4166. The TOPS-20 modem program already does this.
  4167.  
  4168. Anyhow, unix people, here are the answers (if unix is so wonderful, how come
  4169. everybody has so much trouble figuring this out? (don't bother answering that))
  4170.  
  4171. Date: Wednesday,  9 Mar 1983 12:56-PST
  4172. From: bridger at rand-unix
  4173. To:   Gail Zacharias <GZ>
  4174. cc:   FJW, W8SDZ, guyton at rand-unix
  4175. Re:   downloading .com files
  4176.  
  4177. Thanks for the protocol, which enabled our resident expert, jim guyton,
  4178. to develop this method of downloading binary files.
  4179. At Rand-unix we are using a version of the BBN ftp program.
  4180.  
  4181. If you think it's of general interest, please post it.
  4182.  
  4183.  
  4184. 1. to retrieve "AR14:CPM;NAMEXX COM" from mit-mc:
  4185.  
  4186.     ftp mit-mc
  4187.     type i
  4188.     quote
  4189.     type "l 8"
  4190.     get
  4191.     "AR14:CPM;NAMEXX COM"
  4192.     longnamexx.com
  4193.     bye
  4194.  
  4195. 2. to strip off the 4 header bytes:
  4196.  
  4197.     dd if=longnamexx.com of=namexx.com bs=1 skip=4
  4198.  
  4199. 3. to download to a cpm machine:
  4200.  
  4201.     umodem -sb namexx.com            
  4202.  
  4203.                     bridger
  4204. 30-Mar-83 02:29:00,721;000000000000
  4205. Date: 30 March 1983 02:29 EST
  4206. From: Michael C. Adler <MADLER@mit-mc.arpa>
  4207. Subject: DICCRE V2.0
  4208. To: info-cpm@brl.arpa
  4209. Received: From Mit-Mc.ARPA via smtp;  30 Mar 83 15:58 EST
  4210. Received: From Brl.ARPA via smtp;  30 Mar 83 16:02 EST
  4211. Received: From Brl-Bmd.ARPA via smtp;  30 Mar 83 16:06 EST
  4212.  
  4213. A new version of DICCRE (the dictionary creation program for SPELL) has been
  4214. stored in MC:AR59:CPM;DICCRE 20MAC, etc.  It fixes a bug found by Leor
  4215. Zolman.
  4216.  
  4217. Don't worry about the integrity of dictionaries you have already created!  You
  4218. would have noticed had the bug hit you.  DICCRE V1.0 failed to write double
  4219. apostrophes to SPELL0.MAC if one was in a word.  Obviously, M80 simply choked
  4220. on such files.
  4221. -Michael
  4222. 30-Mar-83 05:41:00,4933;000000000000
  4223. Date: 30 March 1983 05:41 EST
  4224. From: Keith Petersen <W8SDZ@mit-mc.arpa>
  4225. Subject: XMODEM73 now available on MC
  4226. To: Info-Cpm@brl.arpa
  4227. Received: From Mit-Mc.ARPA via smtp;  30 Mar 83 5:41 EST
  4228. Received: From Brl.ARPA via smtp;  30 Mar 83 6:26 EST
  4229. Received: From Brl-Bmd.ARPA via smtp;  30 Mar 83 6:32 EST
  4230.  
  4231. RCPM operators and others occasionally using their systems with
  4232. remote console software (like BYE) will want to get the new
  4233. XMODEM73.  It has many new features, explained in some detail below.
  4234.  
  4235. ---
  4236. TOPIC:  XMODEM73
  4237. FROM :  IRV HOFF W6FFC
  4238. DATE :  27 MAR 83
  4239.  
  4240.      XMODEM is a program used primarily on remotely operated RCPM systems
  4241. that allows program transfer to and/or from remote users.  It can trans-
  4242. fer any type of CP/M file including absolute binary files (.OBJ).
  4243.      Originally written by Keith Petersen and based at that time on Ward
  4244. Christensen's MODEM ver 2.0 it has since undergone extensive revision.
  4245.      Nearly every new version has tacked on yet another computer/modem
  4246. combination.  It has grown very unwieldy in size and awkward to handle.
  4247.      In a major contribution to simplifying the program, Sigi Kluger with
  4248. his XMODEM 6.8 stripped out all the various hardware configurations.  He
  4249. wound up with a jump table at the beginning that permits use of external
  4250. overlay files for a particular computer/modem....  
  4251.      The current version is XMODEM 7.3.  The 7.x series has several new
  4252. features which give it a tremendous flexibility.  Major recent additions
  4253. include:
  4254.  
  4255.      1) A general purpose menu.  Just type:
  4256.  
  4257.        A0>XMODEM <return> 
  4258.  
  4259.        This menu includes the drive/user area for normal uploading.
  4260.        (The A0> prompt in this and subsequent examples is shown as a
  4261.        typical possibilty of a drive/user area you may be in.)
  4262.  
  4263.      2) Ability to send (download to the remote user) member files from
  4264.        a library group (.LBR)  without having to copy the entire li-
  4265.        brary file.  (Use a separate program called LDIR.COM to find
  4266.        the member names of a library group.)
  4267.             
  4268.      3) Ability to specify what disk/user area from which to send a pro-
  4269.        gram so the remote user doesn't have to go to that area first:
  4270.  
  4271.        A0>XMODEM S B6:HELLO.DOC
  4272.  
  4273.        (An option limits the maximum user area.)  
  4274.  
  4275.      4) Programs can be uploaded to a special non-public user area for
  4276.        the exclusive use of the SYSOP.  These can include replacement
  4277.        programs for one already on some public area, experimental
  4278.        programs you wish him to test before making them public, pre-
  4279.        typed notes for his exclusive reading or any program you wish
  4280.        him to see that is not appropriate for public use at that time.
  4281.  
  4282.      5) Ability to download from a special area.  This enables the SYSOP
  4283.        to place special programs, pretyped messages, etc. in this
  4284.        area.  He can then leave a private message on his bulletin
  4285.        board to the person for whom the program is intended.  Al-
  4286.        though any user COULD download that program, only the SYSOP
  4287.        and his intended recepient know the its correct name.  This
  4288.        provides excellent security.  The SYSOP can thus make any per-
  4289.        son an instant temporary privileged user.  This gives him a
  4290.        tremendous flexibility he has not previously had.
  4291.  
  4292.      6) Spaces can now be used without error.  Example:
  4293.  
  4294.        A0>XMODEM   L   B7:   CATALOG    CAT2.DOC
  4295.  
  4296.        will send a file called CAT2.DOC from the CATALOG.LBR library.
  4297.        NOTE:  The  .LBR extent need not be included.  If not, it is
  4298.                   added automatically.        
  4299.  
  4300.      At this time there are several external overlays available.  The
  4301. list will obviously grow as others add to it:
  4302.  
  4303. XM73ACAT   -  for Apple users with the Novation APPLE-CAT modem
  4304. XM73MMII   -  for Apple users with the Micromodem II modem
  4305. XM73DCXX   -  for Apple users with the D.C. Hayes modem
  4306. XM73PMMI   -  for S-100 users with PMMI modem boards
  4307. XM73HZ89   -  for Heath/Zenith H8 or H89 users with external modem
  4308. XM73INT3   -  for those using the Compupro Interfacer 3/4 modem
  4309. XM73EXT    -  for computers with 8251 I/O and external modems
  4310.  
  4311.      These contain instructions on how to then use DDT (or SID) to read-
  4312. ily adapt the external overlay to the main program.
  4313.  
  4314.      These files are available from the MIT-MC CPM; directory.
  4315. The names were changed slightly to fit better into the six-character
  4316. two-field filename arrangement that ITS uses.
  4317.  
  4318. All are in AR63:CPM;
  4319.  
  4320. XMACAT 73ASM
  4321. XMDCH  73ASM
  4322. XMEXT  73ASM
  4323. XMHZ89 73ASM
  4324. XMINT3 73ASM
  4325. XMMMII 73ASM
  4326. XMODEM 73ASM
  4327. XMODEM 73INF
  4328. XMODEM 73MSG
  4329. XMPMMI 73ASM
  4330.  
  4331.      Users who can download ITS-style "COM" files will find the same
  4332. ten files in AR100:W8SDZ; in "squeezed" format to save downloading
  4333. time.  This is a temporary ARchive only and will be deleted in a few
  4334. days.  As with squeezer convention, the next-to-last character of the
  4335. filename is a "Q" instead of its original character.
  4336.  
  4337. --Keith
  4338. 30-Mar-83 10:57:00,589;000000000000
  4339. Date: 30 Mar 83 10:57 PST (Wednesday)
  4340. From: Henning.ES@parc-maxc.arpa
  4341. Subject: Re: SANYO MICRO
  4342. In-reply-to: STORK@mit-mc.arpa's message of 28 Mar 83 07:32 EST
  4343. To: Eric Stork <STORK@mit-mc.arpa>
  4344. cc: info-cpm@brl.arpa
  4345. Received: From Parc-Maxc.ARPA via smtp;  30 Mar 83 14:02 EST
  4346. Received: From Brl.ARPA via smtp;  30 Mar 83 14:25 EST
  4347. Received: From Brl-Bmd.ARPA via smtp;  30 Mar 83 14:42 EST
  4348.  
  4349. What is the model number of the SANYO?  Is is the MBC-1000, or the MBC-2000,
  4350. or the MBC-3000?  I've heard that the 2000 is going to be discontinued, to be
  4351. replaced with a newer model.
  4352. 30-Mar-83 13:39:04,1082;000000000000
  4353. Date:     30 Mar 83 13:39:04 EST (Wed)
  4354. From:     Bob Bloom (TECOM) <bbloom@brl.arpa>
  4355. To:       info-cpm@brl.arpa
  4356. cc:       bbloom@brl.arpa
  4357. Subject:  how DO you FTP files from mc?
  4358. Received: From Brl.ARPA via smtp;  30 Mar 83 13:45 EST
  4359. Received: From Brl-Bmd.ARPA via smtp;  30 Mar 83 13:49 EST
  4360.  
  4361. As one can see from the header, I'm on the brl machine (a PDP-11/70
  4362. something running Unix version something)  I've never been able to
  4363. transfer a .com file from mc through ftp to brl and then MODEM down-
  4364. load to my micro.  I've been quite sucessfull tranfering .hex and .txt
  4365. files.  From the ongoing discussion, I think I know why this is but
  4366. I'd really like to know how to get around it.
  4367.  
  4368. I have ftp'ed a .com and a .hex file of the same program, loaded
  4369. the .hex file, and uploaded the (loaded) .com file to compare with
  4370. the original ftp'ed .com file.  NO RELATION!  I was hoping that I could
  4371. find those four characters that ITS uses as a file identifier (from 
  4372. 446353300000 octal = 223,072,330,0 as first four bytes)  No luck.
  4373.  
  4374. So how do you do it?  
  4375.  
  4376. bob bloom
  4377. 30-Mar-83 17:44:00,788;000000000000
  4378. Date: 30 Mar 1983 1644-PST
  4379. From: HFISCHER@usc-ecl.arpa
  4380. Subject: TRS80 model 100 
  4381. To:   info-cpm@mit-mc.arpa
  4382. cc:   hfischer@usc-eclb.arpa
  4383. Received: From Mit-Mc.ARPA via smtp;  30 Mar 83 20:22 EST
  4384. Received: From Brl.ARPA via smtp;  31 Mar 83 0:30 EST
  4385. Received: From Brl-Bmd.ARPA via smtp;  31 Mar 83 0:42 EST
  4386.  
  4387. Does anybody know anything about software structure for the TRS80 model
  4388. 100? (Appears to be microsoft rom-resident program, executing on
  4389. cmos 8085, with decent integration to basic facilities.)
  4390.  
  4391. Is it possible to generate compatable 8085 code from "C" or LISP-like
  4392. tools on a mainframe and downlink for execution?
  4393. Or is there a interpreter for the internally supported primitives
  4394. which accepts something other than basic?
  4395.  
  4396. Herm Fischer (HFischer@eclb)
  4397. -------
  4398. 30-Mar-83 20:35:17,1299;000000000000
  4399. Date:     30 Mar 83 20:35:17 EST (Wed)
  4400. From:     Keith Petersen <w8sdz@brl.arpa>
  4401. To:       CCVAX.revc@nosc-cc.arpa
  4402. cc:       Info-Micro@brl.arpa, Info-Cpm@brl.arpa
  4403. Subject:  Re:  1200 Baud PMMI S-100 modem
  4404. Received: From Brl.ARPA via smtp;  31 Mar 83 0:30 EST
  4405. Received: From Brl-Bmd.ARPA via smtp;  31 Mar 83 0:44 EST
  4406.  
  4407. The forthcoming 300/1200 baud PMMI S-100 modem will NOT have
  4408. the Vadic 3400 protocol included.  Several people asked about
  4409. that.  Vadic isn't including it in most of their new OEM units.
  4410. There has been some discussion about whether 3400 is better
  4411. than 212A, and one comment I read was that it really wasn't a
  4412. better protocol.  The only reason it SEEMED better, the sender said,
  4413. was that the 212A part of the "Triple Modem" wasn't as well designed
  4414. as it could have been.  I assume that if this is true, it could be
  4415. the reason that Racal hasn't included the 3400 protocol in the new
  4416. units.  They may have improved the 212A part instead, in the interests
  4417. of gaining a wider market.  This is all conjecture, however.
  4418.  
  4419. For those interested in the new PMMI modem (when it's available in
  4420. June), here's the address and phone number:
  4421.  
  4422.    PMMI Communications
  4423.    5201 Leesburg Pike
  4424.    Suite 604
  4425.    Falls Church, Virginia  22041
  4426.    Phone (703) 379-9660
  4427.  
  4428. --Keith
  4429. 30-Mar-83 23:21:01,1886;000000000000
  4430. Date:     30 Mar 83 23:21:01 EST (Wed)
  4431. From:     Rick Conn <rconn@brl.arpa>
  4432. To:       info-cpm@brl.arpa
  4433. Subject:  New SYSLIB 2.6
  4434. Received: From Brl.ARPA via smtp;  31 Mar 83 0:33 EST
  4435. Received: From Brl-Bmd.ARPA via smtp;  31 Mar 83 0:44 EST
  4436.  
  4437. AR19:CPM now contains the new SYSLIB 2.6; CRCs check.
  4438.  
  4439. AR80:FJW now contains the upgrade doc for it as Z2SYS 2MOD.  It is a short
  4440. file, so copy follows:
  4441.  
  4442.  
  4443.  
  4444.  
  4445.  
  4446.                       SOFTWARE UPGRADES to SYSLIB and ZCPR2
  4447.                                   30 March 1983
  4448.  
  4449.                                        by
  4450.                                   Richard Conn
  4451.  
  4452.                        SYSLIB 2.6 Upgrade from SYSLIB 2.5
  4453.  
  4454.  
  4455.         1.0  Baselines
  4456.  
  4457.              The  following baseline software is established by this  up-
  4458.         grade:
  4459.                        SYSLIB 2.6
  4460.  
  4461.  
  4462.         2.0  Associated Upgrade Documentation
  4463.  
  4464.              No   additonal   documentation  accompanies  this   upgrade.  
  4465.         Existing documentation reflects Version 2.6 of SYSLIB correctly.
  4466.  
  4467.  
  4468.         3.0  Files Affected by this Upgrade
  4469.  
  4470.              The following files are provided with this upgrade:
  4471.  
  4472.                   SDIR.MAC     SVERSION.MAC     SYSLIB.REL
  4473.  
  4474.              These files have the following CRC values:
  4475.  
  4476.             1 File: SDIR    .MAC -- Size:    34K -- CRC: 36 FA
  4477.             2 File: SVERSION.MAC -- Size:     1K -- CRC: 15 E5
  4478.             3 File: SYSLIB  .REL -- Size:    14K -- CRC: 38 D0
  4479.  
  4480.  
  4481.         4.0  Reasons for Changes to Programs and Files
  4482.  
  4483.              SYSLIB Change Summary:
  4484.                   The  DIRF routine in the SDIR module did not  correctly 
  4485.                        select files from ALL user areas when bit 5 of the
  4486.                        A register was set; this was caused by an error in
  4487.                        the DIRLOAD routine;  the DIRLOAD routine has been
  4488.             corrected
  4489. 31-Mar-83 12:37:00,678;000000000000
  4490. Date: 31 Mar 1983 1437-EST
  4491. From: DEUFEL@dec-marlboro.arpa
  4492. To: INFO-CPM@brl.arpa
  4493. Subject: CAD Tools
  4494. Message-ID: <"MS10(2055)+GLXLIB1(1056)" 11907843351.13.385.60896 at DEC-MARLBORO>
  4495. Received: From Dec-Marlboro.ARPA via smtp;  31 Mar 83 14:38 EST
  4496. Received: From Brl.ARPA via smtp;  31 Mar 83 14:51 EST
  4497. Received: From Brl-Bmd.ARPA via smtp;  31 Mar 83 15:02 EST
  4498.  
  4499.  
  4500. I am trying to put together a list of CAD tools that run under CP/M to
  4501. aid in circuit design, logic design, PC board layout, etc. Does such a
  4502. list exist? If one does not, send me any info you may have and I will
  4503. distribute a list of those programs that turn up.
  4504.  
  4505.             Thanks,
  4506.             -Abdul-
  4507.  
  4508.    --------
  4509. 31-Mar-83 12:49:32,724;000000000000
  4510. From: Sent by HNIJ <rms.g.hnij%mit-oz@mit-mc.arpa (Sent by HNIJ)>
  4511. Date: 03/31/83 12:49:32
  4512. Subject: More than 256 files/disk?
  4513. Received: From Mit-Mc.ARPA via smtp;  1 Apr 83 2:46 EST
  4514. Received: From Brl.ARPA via smtp;  1 Apr 83 2:54 EST
  4515. Received: From Brl-Bmd.ARPA via smtp;  1 Apr 83 3:01 EST
  4516.  
  4517. rms.g.hnij%mit-oz@mit-mc (Sent by HNIJ) 03/31/83 12:49:32 Re: More than 256 files/disk?
  4518. To: Info-CPM at MIT-MC
  4519.     Is there a way to get more than 256 (or whatever the Disk
  4520. Parameter Header says) files per disk?  Is there any good reason
  4521. why I couldn't change my BIOS dph table to be 512 entries?  I have
  4522. a few disks that have 100-200k free, but the directory is full.
  4523.  
  4524.             John Labovitz
  4525.  
  4526.             rms.g.hnij%mit-oz @ mit-mc
  4527. 31-Mar-83 22:26:00,1002;000000000000
  4528. Date: 31 March 1983 22:26 EST
  4529. From: Allan D. Plehn <PLEHN@mit-mc.arpa>
  4530. Subject: MODEM7 available on SUPERBRAIN disk.
  4531. To: INFO-CPM@mit-mc.arpa
  4532. cc: PLEHN@mit-mc.arpa
  4533. Received: From Mit-Mc.ARPA via smtp;  31 Mar 83 22:25 EST
  4534. Received: From Brl.ARPA via smtp;  31 Mar 83 22:34 EST
  4535. Received: From Brl-Bmd.ARPA via smtp;  31 Mar 83 22:42 EST
  4536.  
  4537. In the Feb 21 issue of INFOWORLD, page 63, there is an offer
  4538. of MODEM7 on a 5-inch disk in SuperBrain format.  Dave
  4539. Steidley of Omnitech, 50 Baltusrol Way Short Hills, .J.,
  4540. 07078 offers the disk for only $7.50 copying charge.  I sent
  4541. for one and got it in about 10 days.  It is an older version
  4542. of MODEM7 (7.3, I think) but it works fine.  Used that to bring
  4543. MODEM705 up on the SuperBrain, saving all the time of bootstrapping
  4544. up via MBOOT3.  You don't have to send a disk, it is included
  4545. in the $7.50.
  4546.  
  4547. On the same page there is a similar offer of MODEM7 for the
  4548. Vector Graphic.  Also 85 volumes of CPMUG on Kaypro format
  4549. disks.
  4550.             Al Plehn
  4551. 31-Mar-83 01:30:00,891;000000000000
  4552. Received: From Brl-Bmd.ARPA by BRL via smtp;  2 Jun 83 18:31 EDT
  4553. Received: From brl-gateway2.ARPA by BRL-BMD via smtp;  2 Jun 83 18:25 EDT
  4554. Received: From Mit-Mc.ARPA by BRL via smtp;  2 Jun 83 18:21 EDT
  4555. Date: 31 March 1983 01:30 EST
  4556. From: Keith Petersen <W8SDZ@mit-mc>
  4557. Subject:  how DO you FTP files from mc?
  4558. To: bbloom@brl
  4559. cc: INFO-CPM@mit-mc
  4560. In-reply-to: Msg of 30 Mar 83 13:39:04 EST (Wed) from Bob Bloom (TECOM) <bbloom at brl.arpa>
  4561.  
  4562. BRL's ftp doesn't know about BINARY files.  It's a dumb ASCII-only
  4563. ftp.  It strips ALL high-order bits from the file.  This has been
  4564. brought to the attention of the system gurus at BRL but so far no fix
  4565. has been forthcoming.  This was caused by the changeover to TCP/IP,
  4566. which required the BRL people to re-write FTP.  They seem to have
  4567. little interest in the problems of us CP/M'ers.  (Maybe a little
  4568. competativeness showing there?)..
  4569.