home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / genie-commodore-file-library / CompSysCBM / 070396B.TXT < prev    next >
Text File  |  2019-04-13  |  49KB  |  1,266 lines

  1. #! rnews 2211
  2. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.mathworks.=
  3. com!fu-berlin.de!zib-berlin.de!news.tu-chemnitz.de!fachat
  4. From: fachat@physik.tu-chemnitz.de (Andre Fachat)
  5. Newsgroups: comp.sys.cbm,comp.emulators.cbm,comp.sys.apple2,comp.sys.atar=
  6. i.8bit,alt.comp.hardware.homebuilt
  7. Subject: Re: Multithreading OS for the C64
  8. Followup-To: comp.sys.cbm,comp.emulators.cbm,comp.sys.apple2,comp.sys.ata=
  9. ri.8bit,alt.comp.hardware.homebuilt
  10. Date: 3 Jul 1996 16:16:35 GMT
  11. Organization: University of Technology Chemnitz, FRG
  12. Lines: 27
  13. Message-ID: <4re6d3$8oe@narses.hrz.tu-chemnitz.de>
  14. References: <4q3u1i$rd7@sun0.urz.uni-heidelberg.de> <Dtvnp8.9p3@inter.NL.=
  15. net> <Dtxpuo.JD9@undergrad.math.uwaterloo.ca> <4rcqt2$p2u@seagoon.newcast=
  16. le.edu.au>
  17. NNTP-Posting-Host: mclane.physik.tu-chemnitz.de
  18. X-Newsreader: TIN [version 1.2 PL2]
  19. Xref: pravda.aa.msen.com comp.sys.cbm:57343 comp.emulators.cbm:12260 comp=
  20. .sys.apple2:105099 comp.sys.atari.8bit:38419 alt.comp.hardware.homebuilt:=
  21. 23278
  22.  
  23. Bruce R. McFarling (ecbm@cc.newcastle.edu.au) wrote:
  24. : Notice that normally the 6502 address space is full
  25. : with additional memory (if available) banked in by an external
  26. : memory management arrangement.  So if the 6502 *had* 'boundary
  27. : errors' it would be pointless -- I believe the Andre's original
  28. : 6502 box had memory banking on 4K boundaries (is that right?)
  29. Yes you are right. The upper 4 address bits were taken as index
  30. into 16 registers each 8 bit wide. So I had 16 chunks of memory,
  31. each 4kByte in size.
  32. These could then be mapped to any of 256 chunks within the=20
  33. extended up to 1MByte memory.
  34.  
  35. : which give 16 different relocatable chunks of memory in the
  36. : memory space.  So the assumption that
  37. : (logical address space) > (physical address space)
  38. : is often strictly false for a 6502 machine. (That includes
  39. : the original 6502, with 64K RAM, 16K ROM, and 0K < IO < 4K
  40. You mean C64, don't you?
  41.  
  42. Andre
  43.  
  44.  
  45. --
  46. Andre Fachat, Tel:++49-371-531-3551|"I do not feel obliged to believe tha=
  47. t the
  48. Stadlerstr 17, 09126 Chemnitz, FRG | same God who has endowed us with sen=
  49. se,
  50. a.fachat@physik.tu-chemnitz.de     | reason, and intellect has intended u=
  51. s to
  52. http://www.tu-chemnitz.de/~fachat  | forego their use" -- Galileo Galilei
  53. #! rnews 2266
  54. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.mathworks.=
  55. com!fu-berlin.de!zib-berlin.de!news.tu-chemnitz.de!fachat
  56. From: fachat@physik.tu-chemnitz.de (Andre Fachat)
  57. Newsgroups: comp.sys.cbm,comp.emulators.cbm,comp.sys.apple2,comp.sys.atar=
  58. i.8bit,alt.comp.hardware.homebuilt
  59. Subject: Re: Multithreading OS for the C64
  60. Date: 3 Jul 1996 16:18:08 GMT
  61. Organization: University of Technology Chemnitz, FRG
  62. Lines: 28
  63. Message-ID: <4re6g0$8oe@narses.hrz.tu-chemnitz.de>
  64. References: <4q3u1i$rd7@sun0.urz.uni-heidelberg.de> <Dtvnp8.9p3@inter.NL.=
  65. net> <4rd0bt$4uq@umbc10.umbc.edu> <4rd6m0$dp3@tuegate.tue.nl>
  66. NNTP-Posting-Host: mclane.physik.tu-chemnitz.de
  67. X-Newsreader: TIN [version 1.2 PL2]
  68. Xref: pravda.aa.msen.com comp.sys.cbm:57344 comp.emulators.cbm:12261 comp=
  69. .sys.apple2:105100 comp.sys.atari.8bit:38420 alt.comp.hardware.homebuilt:=
  70. 23279
  71.  
  72. Martijn van Buul (martijnb@stack.urc.tue.nl) wrote:
  73. : | I'm guessing he uses the timer interrupt. Am I close?
  74. : Well, I guess he is ;) I'm currently making a task-swapper myself (just
  75. : for the fun of it. I've got no intentions or whatever blahblah), and I'=
  76. m
  77. : using the NMI for it... Those CIA's might come in hand, every now and t=
  78. hen..
  79.  
  80. Well, I'm using the timer interrupt. But then I use the IRQ timer.
  81. A disadvantage is, that 'nasty' programs can take full control over
  82. the machine. An advantage is that the system itself cannot be=20
  83. interrupted when doing critical routines. Well, that could have been
  84. taken care of with a flag (to immediately return from NMI) but
  85. I thought it was easier this way.
  86.  
  87. And as I wanted to run close-to-hardware processes on the machine, I
  88. wanted a process to be able to protect itself from task switching.
  89. (for timing critical hardware handling)
  90. Which is obviously easier when just doing a SEI instead of=20
  91. calling some StopMultiTasking or RestartMultiTasking (as the Amiga does)
  92. to access some kernel internal flag - which is not available in the=20
  93. process memory.
  94. =20
  95. Andre
  96.  
  97. --
  98. Andre Fachat, Tel:++49-371-531-3551|"I do not feel obliged to believe tha=
  99. t the
  100. Stadlerstr 17, 09126 Chemnitz, FRG | same God who has endowed us with sen=
  101. se,
  102. a.fachat@physik.tu-chemnitz.de     | reason, and intellect has intended u=
  103. s to
  104. http://www.tu-chemnitz.de/~fachat  | forego their use" -- Galileo Galilei
  105. #! rnews 889
  106. Path: pravda.aa.msen.com!news1.best.com!sgigate.sgi.com!newsfeeder.sdsu.e=
  107. du!newspump.sol.net!news.mindspring.com!usenet
  108. From: Radioactive Warrior <radwar@orl.mindspring.com>
  109. Newsgroups: comp.sys.cbm
  110. Subject: Re: CIA serial port discrepancy, $DD0C
  111. Date: Wed, 03 Jul 1996 12:46:12 +0000
  112. Organization: noorgan
  113. Lines: 6
  114. Message-ID: <31DA6B94.2DF0@orl.mindspring.com>
  115. References: <31D9DFC5.6CE7@orl.mindspring.com> <4rdsl1$man@news.acns.nwu.=
  116. edu>
  117. Reply-To: noname
  118. NNTP-Posting-Host: user-168-121-176-117.dialup.mindspring.com
  119. Mime-Version: 1.0
  120. Content-Type: text/plain; charset=3Dus-ascii
  121. Content-Transfer-Encoding: 7bit
  122. X-Mailer: Mozilla 2.02 (Macintosh; U; PPC)
  123.  
  124. Stephen Judd wrote:
  125. > Why don't you swap the CIAs and see what the new behavior is?
  126.  
  127. Well, 80 pins are a pain to de-solder if I don't havta :)  Any other
  128. software fixes that might set this register to zero???
  129. > >Radioactive Warrior
  130. #! rnews 2586
  131. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.mathworks.=
  132. com!fu-berlin.de!zib-berlin.de!news.tu-chemnitz.de!fachat
  133. From: fachat@physik.tu-chemnitz.de (Andre Fachat)
  134. Newsgroups: comp.sys.cbm,comp.emulators.cbm,comp.sys.apple2,comp.sys.atar=
  135. i.8bit,alt.comp.hardware.homebuilt
  136. Subject: Re: Multithreading OS for the C64
  137. Followup-To: comp.sys.cbm,comp.emulators.cbm,comp.sys.apple2,comp.sys.ata=
  138. ri.8bit,alt.comp.hardware.homebuilt
  139. Date: 3 Jul 1996 16:30:36 GMT
  140. Organization: University of Technology Chemnitz, FRG
  141. Lines: 31
  142. Message-ID: <4re77c$8oe@narses.hrz.tu-chemnitz.de>
  143. References: <4q3u1i$rd7@sun0.urz.uni-heidelberg.de> <Dtvnp8.9p3@inter.NL.=
  144. net> <Dtxpuo.JD9@undergrad.math.uwaterloo.ca> <4rcqt2$p2u@seagoon.newcast=
  145. le.edu.au>
  146. NNTP-Posting-Host: mclane.physik.tu-chemnitz.de
  147. X-Newsreader: TIN [version 1.2 PL2]
  148. Xref: pravda.aa.msen.com comp.sys.cbm:57346 comp.emulators.cbm:12262 comp=
  149. .sys.apple2:105103 comp.sys.atari.8bit:38423 alt.comp.hardware.homebuilt:=
  150. 23280
  151.  
  152. : >> how did you make it pre-emptive when the 6502 processor
  153. : >> itself has no way to check for boundaries or anything
  154. : >> (so called trap errors coming from the processor itself
  155. : >> (in pc systems btw)). In what way can the operating system
  156.  
  157. In my original design, the memory pages from other processes just couldn'=
  158. t
  159. be accessed, as they were not mapped in. (As I explained in another
  160. post). A process with 8kByte RAM just had access to 8 kByte RAM
  161. and the rest of the address space would be mapped into some read-only
  162. regions (well, I used the kernel image...)
  163. So that the process can just change it's own RAM.
  164.  
  165. That's even a way to implement paging, i.e. put a process out on disk=20
  166. if memory is short. Only one thing, as you mentioned, has to be taken
  167. care of: The 6502 cannot detect memory faults, so that _all_ memory pages
  168. belonging to the process must be mapped and accessible when it is run.
  169. (Even if there were some hardware mechanism to detect the fault,
  170. there is no way to restore the original register values as before the
  171. trapped memory access - which is essential to correctly re-execute
  172. the offending opcode after the page has been loaded.
  173. The capability to restore the register values was one of the few
  174. improvements of the Motorola 68010 CPU above the 68000.)
  175.  
  176. so long
  177. Andre
  178.  
  179. --
  180. Andre Fachat, Tel:++49-371-531-3551|"I do not feel obliged to believe tha=
  181. t the
  182. Stadlerstr 17, 09126 Chemnitz, FRG | same God who has endowed us with sen=
  183. se,
  184. a.fachat@physik.tu-chemnitz.de     | reason, and intellect has intended u=
  185. s to
  186. http://www.tu-chemnitz.de/~fachat  | forego their use" -- Galileo Galilei
  187. #! rnews 1306
  188. Path: pravda.aa.msen.com!spool.mu.edu!sgigate.sgi.com!uhog.mit.edu!news.m=
  189. athworks.com!newsfeed.internetmci.com!usenet.logical.net!news.wizvax.net!=
  190. news
  191. From: tonyp@wizvax.wizvax.net (Tony Postmayer)
  192. Newsgroups: comp.sys.cbm,comp.emulators.cbm,sfnet.atk.cbm
  193. Subject: Re: ANNOUNCE: C64 Prog Ref Guide etext available
  194. Date: Wed, 03 Jul 1996 17:37:12 GMT
  195. Organization: Wizvax Communications, Troy, N.Y. 12180 USA
  196. Lines: 21
  197. Message-ID: <31daaf1a.857763@199.181.141.3>
  198. References: <4r39hi$dd2@dub-news-svc-4.compuserve.com>
  199. NNTP-Posting-Host: tonyp.wizvax.net
  200. X-Newsreader: Forte Agent .99e/16.227
  201. Xref: pravda.aa.msen.com comp.sys.cbm:57347 comp.emulators.cbm:12263 sfne=
  202. t.atk.cbm:155
  203.  
  204. On Sat, 29 Jun 1996 13:12:00 GMT, 74171.2136@compuserve.com (Cris
  205. Berneburg) wrote:
  206.  
  207. >
  208. >OK, it's finally done! The Commodore 64 Programmer's
  209. >Reference Guide is now available to you as a Project 64
  210. >electronic text. Here's an excerpt from the document that
  211. >Ville Muikkula <vmuikku@yrttis.ratol.fi>, the individual
  212. >who undertook this effort, included in the etext header:
  213. >
  214. Excellent job.  I just visited your homepage a snagged a bunch of
  215. texts.  I thinks it's a great way of preserving these old sources of
  216. information.
  217.  
  218. Keep up the good work!
  219.  
  220. (and don't let any pissy-faced wet blankets dampen your enthusiam)
  221.  
  222.   Tony -
  223.  
  224.  
  225. #! rnews 1150
  226. Path: pravda.aa.msen.com!spool.mu.edu!howland.reston.ans.net!gatech!ennfs=
  227. .eas.asu.edu!noao!CS.Arizona.EDU!ruby.ucc.nau.edu!dana.ucc.nau.edu!pap
  228. From: pap@dana.ucc.nau.edu (Paul Allen Panks)
  229. Newsgroups: comp.sys.cbm
  230. Subject: What or who is Visacorp?
  231. Date: 3 Jul 1996 18:37:19 GMT
  232. Organization: Northern Arizona University, Flagstaff AZ, USA
  233. Lines: 23
  234. Message-ID: <4reekv$8g1@ruby.ucc.nau.edu>
  235. NNTP-Posting-Host: dana.ucc.nau.edu
  236. X-Newsreader: TIN [version 1.2 PL2]
  237.  
  238. I just missed out on the article "AT to be sold to Visacorp!!!", and only=
  239. =20
  240. was able to read the responses (which BTW, where off topic, but who=20
  241. cares...that's ancient history now) ;)
  242.  
  243. What is Visacorp, and what is AT?Does it tie in with the Commodore=20
  244. community? I've been out of touch with the commodore community for about=20
  245. half a year now until just recently, so I might have missed something big=
  246. =20
  247. inbetween.
  248.  
  249. Regards,
  250.  
  251. Paul Allen Panks
  252.  
  253.  
  254. --
  255. --
  256. "Chickens may lay eggs, but roosters wake you up in the morning. Nobody=20
  257. pays them to do that. I do less work than that and I get paid. And I=20
  258. don't like eggs anyhow. Ooh! Bacon!"
  259.  
  260. Homer Simpson, on subsidizing small-town agriculture.
  261.  
  262.  
  263. #! rnews 1386
  264. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!news.=
  265. mathworks.com!news-res.gsl.net!news.gsl.net!EU.net!Norway.EU.net!nntp.uio=
  266. .no!news.kth.se!tybalt.admin.kth.se!celsiustech.se!seunet!news2.swip.net!=
  267. news.nocom.se!newsfeed.tip.net!news.telia.se!usenet
  268. From: Pontus Berg <Bacchus@FairLight.COM>
  269. Newsgroups: comp.sys.cbm
  270. Subject: Re: Assembler
  271. Date: Wed, 03 Jul 1996 13:27:34 -0700
  272. Organization: FairLight - Home of the brave!
  273. Lines: 16
  274. Message-ID: <31DAD7B6.2746@FairLight.COM>
  275. References: <840066582@freenet-news.carleton.ca> <836167753@p71.f411.n201=
  276. .z2.ftn>
  277. Reply-To: PBG@HK.Mobitel.Telia.SE
  278. NNTP-Posting-Host: hkpbg.hk.mobitel.telia.se
  279. Mime-Version: 1.0
  280. Content-Type: text/plain; charset=3Dus-ascii
  281. Content-Transfer-Encoding: 7bit
  282. X-Mailer: Mozilla 3.0b5Gold (Win16; I)
  283.  
  284. Pontus Berg wrote:
  285. > Try looking at my list of tools supporting the c64 on other platforms!
  286. > http://www.ludd.luth.se/~watchman/fairlight/c64/tools2.htm (phew - I ho=
  287. pe I got
  288. > it right)
  289.  
  290. Sorry for the error in the reference; It shall really be:=20
  291.  
  292. http://www.ludd.luth.se/~watchman/fairlight/c64/tools2.html
  293.  
  294. Only the ending "l" missing but that made a lot of difference!
  295.  
  296. --=20
  297. [----------------------------------------------------]
  298. [  o/  Bacchus@FairLight.COM   Fido: 2:201/411.71    ]
  299. [ (#       http://www.canit.se/ANet/p71.html         ]
  300. [-/7-------------------------------------------------]
  301. #! rnews 1193
  302. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.mathworks.=
  303. com!newsfeed.internetmci.com!vixen.cso.uiuc.edu!prairienet.org!jpnan
  304. From: jpnan@prairienet.org (Jean P Nance)
  305. Newsgroups: comp.sys.cbm
  306. Subject: Re: Comal trivia
  307. Date: 3 Jul 1996 18:09:06 GMT
  308. Organization: University of Illinois at Urbana
  309. Lines: 15
  310. Message-ID: <4red02$7vt@vixen.cso.uiuc.edu>
  311. NNTP-Posting-Host: bluestem.prairienet.org
  312.  
  313.  
  314. Thanks for the information on Comal. I read the story in Comal
  315. Today but had forgotten a lot of it. I agree with everthing said
  316. about Comal as a programming language. I have pretty much given up
  317. up programming. I'm not quite up to Assembly, and certainly can't
  318. face up to programming with either Commodore Basic. Just to=20
  319. frustrating and painful. I join in weeping for Comal. I have
  320. piles and piles of Comal material, but nobody much is even=20
  321. willing to look at Commodore Comal. The Comal area on QLink was
  322. just a tiny handful of people talking about Amiga Comal and
  323. IBM Comal. If Comal had become better known in the Commodore
  324. world, there would be a lot more people with the courage to
  325. program. With just Len Lindsay plugging it with his limited
  326. resourcethere was little hope.
  327. --
  328. #! rnews 642
  329. Path: pravda.aa.msen.com!news1.best.com!sgigate.sgi.com!enews.sgi.com!dec=
  330. wrl!news.PBI.net!news.mathworks.com!newsfeed.internetmci.com!uwm.edu!vixe=
  331. n.cso.uiuc.edu!prairienet.org!jpnan
  332. From: jpnan@prairienet.org (Jean P Nance)
  333. Newsgroups: comp.sys.cbm
  334. Subject: Re: Whereto buy?
  335. Date: 3 Jul 1996 18:12:52 GMT
  336. Organization: University of Illinois at Urbana
  337. Lines: 5
  338. Message-ID: <4red74$858@vixen.cso.uiuc.edu>
  339. NNTP-Posting-Host: bluestem.prairienet.org
  340.  
  341.  
  342. Watch this area! Commodore 64s and Commodore 128s are available
  343. at times. Also, consult the ads in "Commodore World" magazine.
  344. Several places offer used and refurbished Commodore hardware.
  345. --
  346. #! rnews 2060
  347. Path: pravda.aa.msen.com!news1.best.com!sgigate.sgi.com!spool.mu.edu!usen=
  348. et.eel.ufl.edu!tank.news.pipex.net!pipex!usenet2.news.uk.psi.net!uknet!us=
  349. enet1.news.uk.psi.net!uknet!dispatch.news.demon.net!demon!mail2news.demon=
  350. .co.uk!gate.demon.co.uk
  351. From: Jason <tmr@cosine.demon.co.uk>
  352. Newsgroups: comp.sys.cbm
  353. Subject: Re: C64 archivers
  354. Date: Tue, 2 Jul 96 23:39:28 GMT
  355. Organization: Cosine Systems
  356. Lines: 32
  357. Message-ID: <9607022339.AA0046i@cosine.demon.co.uk>
  358. References: <4r671a$ah@ousrvr3.oulu.fi>
  359. X-NNTP-Posting-Host: gate.demon.co.uk
  360. X-Newsreader: TIN [AMIGA 1.3 950726BETA PL0]
  361. X-Mail2News-Path: relay-1.mail.demon.net!gate.demon.co.uk
  362.  
  363. Jari Karppinen:
  364. : Ok, lynxed files were easy since I have the Ult.Lynx 3, but=20
  365. : can anyone tell me how to unpack files with extension .SFX ?
  366. : It is supposed to be somekind of self extracting archive, right --- but=
  367. =20
  368. : how do I get it to extract itself?
  369.  
  370. You run it!  That's how it *self* extracts!  =3D-)
  371.  
  372. : Also there were some LHA archives, which contained files with names
  373. : like: 1!turbo, 2!turbo etc.=20
  374.  
  375. I'll do this one in a mo...
  376.  
  377. : How to unpack those? (What files are they anyway....?)
  378. : I have also heard of zipcode... what might that be then?
  379.  
  380. Those files are zipcode.  But not like the PKZip/GnuZip it's a complete
  381. disk compressor (takes one side of a disk and mashes it down into four
  382. files so that even trackload stuff can be shipped around via modems).
  383.  
  384. To unpack them check Digital Dungeon's tools directory for ARZIP/UNZIP.
  385. But I doubt it'll like an emulator.
  386.  
  387. Jason  =3D-)
  388.      ____________________________________________________________________=
  389. ___
  390. TMR /     /     /     /  /     /     /                                   =
  391.   /\
  392.    /  /__/  /  /  /__/  /  /  /  /__/    Email: tmr@cosine.demon.co.uk   =
  393.  / /
  394.   /  /\_/  /  /__   /  /  /  /  __//          Cosine Homepage:           =
  395. / /
  396.  /  /__/  /  /  /  /  /  /  /  /  / members.tripod.com/~tmr/cosine.html /=
  397.  /
  398. /_____/_____/_____/__/__/__/_____/_____________________________________/ =
  399. /
  400. \_____\_____\_____\__\__\__\_____\_____________________________________\/
  401. #! rnews 2154
  402. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!news.=
  403. mathworks.com!news-res.gsl.net!news.gsl.net!EU.net!usenet2.news.uk.psi.ne=
  404. t!uknet!usenet1.news.uk.psi.net!uknet!dispatch.news.demon.net!demon!mail2=
  405. news.demon.co.uk!gate.demon.co.uk
  406. From: Jason <tmr@cosine.demon.co.uk>
  407. Newsgroups: comp.sys.cbm
  408. Subject: Re: CCNGA demos and emulation support discontinued... timeframe =
  409. unknown
  410. Date: Tue, 2 Jul 96 23:43:14 GMT
  411. Organization: Cosine Systems
  412. Lines: 27
  413. Message-ID: <9607022343.AA0046n@cosine.demon.co.uk>
  414. References: <Dtw6x6.6qn@undergrad.math.uwaterloo.ca> <4rah84$c5m@seagoon.=
  415. newcastle.edu.au>
  416. X-NNTP-Posting-Host: gate.demon.co.uk
  417. X-Newsreader: TIN [AMIGA 1.3 950726BETA PL0]
  418. X-Mail2News-Path: relay-1.mail.demon.net!gate.demon.co.uk
  419.  
  420. Craig Bruce:
  421. : Anyhow, the demos and emulation stuff are taking up 20 Megs of this
  422. : space and that is increasing since both of these types of programs
  423. : usually come in obnoxiously large ZIP files.  (Plus, I personally
  424. : think that both of these things are useless).
  425.  
  426. Bruce R. McFarling:
  427. :       A much better reason would be that the best emulators
  428. : are available elsewhere, and *ought* to be on any collection of
  429. : the relevant host system that pretends to provide all the useful
  430. : things you can do on that host -- and to be sure, there nothing
  431. : more useful than making a host pretend it's a C64.  And Digital
  432. : Dungeon has a good collection of demos.
  433.  
  434. Please, Craig, if you are killing all the files check to see if they
  435. are on one of the other FTP sites first!  I'd hate to see the last
  436. copy of a demo vanish because nobody else was carrying it!
  437.  
  438. Jason  =3D-)
  439.      ____________________________________________________________________=
  440. ___
  441. TMR /     /     /     /  /     /     /                                   =
  442.   /\
  443.    /  /__/  /  /  /__/  /  /  /  /__/    Email: tmr@cosine.demon.co.uk   =
  444.  / /
  445.   /  /\_/  /  /__   /  /  /  /  __//          Cosine Homepage:           =
  446. / /
  447.  /  /__/  /  /  /  /  /  /  /  /  / members.tripod.com/~tmr/cosine.html /=
  448.  /
  449. /_____/_____/_____/__/__/__/_____/_____________________________________/ =
  450. /
  451. \_____\_____\_____\__\__\__\_____\_____________________________________\/
  452. #! rnews 3261
  453. Path: pravda.aa.msen.com!spool.mu.edu!howland.reston.ans.net!news.sprintl=
  454. ink.net!news-stk-200.sprintlink.net!news.sprintlink.net!news-dc-10.sprint=
  455. link.net!news.mathworks.com!newsfeed.internetmci.com!torn!nott!cunews!fre=
  456. enet-news.carleton.ca!FreeNet.Carleton.CA!df465
  457. From: df465@FreeNet.Carleton.CA (Onno Ebbinge)
  458. Newsgroups: comp.sys.cbm
  459. Subject: Re: ANNOUNCE: C64 Prog Ref Gu
  460. Date: 3 Jul 1996 18:12:24 GMT
  461. Organization: National Capital Freenet, Ottawa, Canada
  462. Lines: 72
  463. Sender: df465@freenet6.carleton.ca (Onno Ebbinge)
  464. Message-ID: <4red68$lik@freenet-news.carleton.ca>
  465. NNTP-Posting-Host: freenet6.carleton.ca
  466.  
  467.  
  468. >  vm> The Project 64 etext of the Commodore 64 Programmer's
  469. >  vm> Reference Guide, first edition. Converted to etext by
  470. >  vm> Ville Muikkula. ...
  471. >=20
  472. >  vm> I hope that this massive
  473. >  vm> project shows to the C=3D community that it is in a fact
  474. >  vm> possible for one man to convert a 500 page book to
  475. >  vm> ASCII text. One just have to be dedicated, believe that
  476. >  vm> it can be done and have the PATIENCE for it...
  477. >  vm> of free time. So, who's going to etext Inside Commodore
  478. >  vm> DOS?
  479. >=20
  480. > Who has Gerald Nuefeld's email address?  I'd like to forward a copy
  481. > of the above message to him and visacorp.
  482. >=20
  483. > Last time I looked there was a copyright notice on the inside
  484. > of the above mentioned books.
  485. =20
  486. Here is a reply from Gerald Neufeld to an email of mine:
  487. =20
  488. > Date: Wed, 08 May 1996 19:13:59 +0700
  489. > From: Gerald Neufeld <neufeld@brandonu.ca>
  490. > Subject: Re: 1541
  491. > To: ebbin200@skutsje.tem.nhl.nl
  492. >=20
  493. > On: Wed, 08 May 1996 ebbin200@hio.tem.NHL.NL wrote:
  494. >=20
  495. > > I've been searching for the best 1541 reference guide for quite
  496. > > a time now... and various people recommended your book!
  497. > >=20
  498. > > Where can I get a copy?
  499. >=20
  500. > I don't know. Datamost went under back in the mid 1980's and so it=20
  501. > has been out of print for the last 10 years or so.
  502. >=20
  503. > > Or is it digital available?
  504. >=20
  505. > No it is not. Datamost or someone who was at the final auction owns
  506. > the copyright (I don't). However, I'd like to know who does because
  507. > whoever does owes me big time in unpaid royalties!
  508. >=20
  509. > > What other book about the 1541 do you recommend?
  510. >=20
  511. > The 1541 User's Guide that I wrote was probably one of the few that
  512. > dealt with the general operation from a user's point of view. The=20
  513. > "Inside Commodore DOS" book that Dick Immers and I did was the
  514. > first  of the books that looked at the inner workings. Abacus
  515. > Publishing  did a couple of other books about the 1541 internals.
  516. > I'm not sure  what is available at this point.
  517. >=20
  518. > > Would you consider making it digital available?
  519. >=20
  520. > I still have the original version in digital form but I'm not sure=20
  521. > whether I have a computer/drive that can read the old formats.=20
  522. > Besides, I don't own the copyright so I can't release it.
  523. >=20
  524. > Gerry
  525. > =20
  526. > --------------------------------------------------------
  527. > Gerald Neufeld,=20
  528. > Dept. of Curriculum & Instruction (Math/Science)
  529. > Faculty of Education, Brandon University
  530. > Brandon, Manitoba, Canada  R7A 6A9  (204) 727-7321
  531. > neufeld@brandonu.ca
  532. >=20
  533. > Ask about
  534. > --------------------------------------------------------
  535. >    Driving the Infohighway: A Guide for VAX/VMS Users
  536. > --------------------------------------------------------
  537. =20
  538. Onno
  539. #! rnews 1267
  540. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  541. eed.internetmci.com!swrinde!cs.utexas.edu!ennfs.eas.asu.edu!noao!CS.Arizo=
  542. na.EDU!ruby.ucc.nau.edu!dana.ucc.nau.edu!pap
  543. From: pap@dana.ucc.nau.edu (Paul Allen Panks)
  544. Newsgroups: comp.sys.cbm
  545. Subject: More 128D problems
  546. Date: 3 Jul 1996 18:22:10 GMT
  547. Organization: Northern Arizona University, Flagstaff AZ, USA
  548. Lines: 24
  549. Message-ID: <4redoi$8g1@ruby.ucc.nau.edu>
  550. NNTP-Posting-Host: dana.ucc.nau.edu
  551. X-Newsreader: TIN [version 1.2 PL2]
  552.  
  553. I believe this problem was addressed in a much earlier article, but I=20
  554. think it bears repeating:
  555.  
  556. My 128D has problems getting such 64 - specific software as MULE,Seven=20
  557. Cities of Gold,Survivor,etc to run...many of the programs will load but=20
  558. not run.
  559.  
  560. Are all 128D's incompatible with some 64 software, or is it case specific=
  561. ?
  562.  
  563. Regards,
  564.  
  565. Paul Allen Panks
  566.  
  567. BTW, I check with ?PEEK(65408) and my bread-box 64 has the same kernal=20
  568. rom revision as my 128D's 64 mode. So how come there's still software=20
  569. incompatibility??
  570. -- --
  571. "Chickens may lay eggs, but roosters wake you up in the morning. Nobody=20
  572. pays them to do that. I do less work than that and I get paid. And I=20
  573. don't like eggs anyhow. Ooh! Bacon!"
  574.  
  575. Homer Simpson, on subsidizing small-town agriculture.
  576.  
  577.  
  578. #! rnews 1291
  579. Path: pravda.aa.msen.com!spool.mu.edu!torn!nott!cunews!freenet-news.carle=
  580. ton.ca!FreeNet.Carleton.CA!df465
  581. From: df465@FreeNet.Carleton.CA (Onno Ebbinge)
  582. Newsgroups: comp.sys.cbm
  583. Subject: Re: ANNOUNCE: C64 Prog Ref Gu
  584. Date: 3 Jul 1996 18:33:16 GMT
  585. Organization: National Capital Freenet, Ottawa, Canada
  586. Lines: 24
  587. Sender: df465@freenet6.carleton.ca (Onno Ebbinge)
  588. Message-ID: <4reedc$lun@freenet-news.carleton.ca>
  589. NNTP-Posting-Host: freenet6.carleton.ca
  590.  
  591.  
  592. >  vm> The Project 64 etext of the Commodore 64 Programmer's
  593. >  vm> Reference Guide, first edition. Converted to etext by
  594. >  vm> Ville Muikkula. ...
  595. =20
  596. Fine piece of work... but you also copied the errors!
  597. =20
  598. >  vm> I hope that this massive
  599. >  vm> project shows to the C=3D community that it is in a fact
  600. >  vm> possible for one man to convert a 500 page book to
  601. >  vm> ASCII text. One just have to be dedicated, believe that
  602. >  vm> it can be done and have the PATIENCE for it...
  603. >  vm> of free time. So, who's going to etext Inside Commodore
  604. >  vm> DOS?
  605. =20
  606. If someone is going to 'etext' Inside Commodore DOS I suggest
  607. to get a copy of the disk that you could order with it. This
  608. will save you a lot of work ;-)
  609. =20
  610. Onno
  611. =20
  612. PS: I don't have a copy of the disk that one could order with
  613.     Inside Commodore DOS. If YOU do please send me one!
  614. =20
  615. #! rnews 1584
  616. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  617. eed.internetmci.com!swrinde!cs.utexas.edu!ennfs.eas.asu.edu!noao!CS.Arizo=
  618. na.EDU!ruby.ucc.nau.edu!dana.ucc.nau.edu!pap
  619. From: pap@dana.ucc.nau.edu (Paul Allen Panks)
  620. Newsgroups: comp.sys.cbm
  621. Subject: Where are they now? Then and now
  622. Date: 3 Jul 1996 18:43:29 GMT
  623. Organization: Northern Arizona University, Flagstaff AZ, USA
  624. Lines: 32
  625. Message-ID: <4ref0h$8g1@ruby.ucc.nau.edu>
  626. NNTP-Posting-Host: dana.ucc.nau.edu
  627. X-Newsreader: TIN [version 1.2 PL2]
  628.  
  629. I think an interesting article, if it hasn't already been discussed at=20
  630. some point in time, is about former Commodore personalities and what they=
  631. =20
  632. are doing now.
  633.  
  634. A prime example would be Jim Butterfield. For years, he has helped the=20
  635. commodore community with countless contributions and programs, and very,=20
  636. very valuable information which we will always cherish and respect. Last=20
  637. I heard, Jim Butterfield was still actively involved in the Commodore=20
  638. Community.
  639.  
  640. Any other names people remember?
  641.  
  642. I'd be particularly interested what individuals such as Tim Walsh, Arnie=20
  643. Katz, Lou Sander, Cleve Blakemore, Joey Latimer, Morton Kevelson, Mike Ho=
  644. yt=20
  645. and Tonny Brantner are doing now.
  646.  
  647. Even part time commore people such as author Orson Scott Card would be=20
  648. interesting to learn more about.
  649.  Regards,
  650.  
  651. Paul Allen Panks
  652.  
  653.  
  654. --
  655. --
  656. "Chickens may lay eggs, but roosters wake you up in the morning. Nobody=20
  657. pays them to do that. I do less work than that and I get paid. And I=20
  658. don't like eggs anyhow. Ooh! Bacon!"
  659.  
  660. Homer Simpson, on subsidizing small-town agriculture.
  661.  
  662.  
  663. #! rnews 1712
  664. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.asu.edu!en=
  665. nfs.eas.asu.edu!noao!CS.Arizona.EDU!ruby.ucc.nau.edu!dana.ucc.nau.edu!pap
  666. From: pap@dana.ucc.nau.edu (Paul Allen Panks)
  667. Newsgroups: comp.sys.cbm
  668. Subject: Re:Triumph of the Nerds
  669. Date: 3 Jul 1996 18:58:09 GMT
  670. Organization: Northern Arizona University, Flagstaff AZ, USA
  671. Lines: 33
  672. Message-ID: <4refs1$8g1@ruby.ucc.nau.edu>
  673. NNTP-Posting-Host: dana.ucc.nau.edu
  674. X-Newsreader: TIN [version 1.2 PL2]
  675.  
  676. One notable contribution that probably goes unnoticed (because of the=20
  677. computers total market mailure) was Commodore putting consumer selectable=
  678. =20
  679. software and applications in ROM (Plus/4, 1984). This should have been=20
  680. done with the 128 as well, IMHO, but it was an innovation that was at=20
  681. least recognized in that August 1994 Byte Article about R.I.P. Commodore.
  682.  
  683. First affordable color computer at under $300 (Vic-20) (1980)
  684. First stereo synthesizer in a computer (C64, 1982)
  685. First true "Multimedia" computer (Amiga, 1985).
  686.  
  687. I think Commodore has been ignored, as that aricle pointed out, because=20
  688. people have been wanting to rewrite the history books for a long time to=20
  689. the tune of Apple and IBM, who indeed were major players (and pioneers as=
  690. =20
  691. well), but who could=20
  692. not have had as much impact without such pioneers as Commodore or Atari.
  693.  
  694. A definative history on microcomputers that includes at least fair=20
  695. mention of Commodore will probably,sadly, never be written.
  696.  
  697. Regards,
  698.  
  699. Paul Allen Panks
  700.  
  701.  
  702. --
  703. --
  704. "Chickens may lay eggs, but roosters wake you up in the morning. Nobody=20
  705. pays them to do that. I do less work than that and I get paid. And I=20
  706. don't like eggs anyhow. Ooh! Bacon!"
  707.  
  708. Homer Simpson, on subsidizing small-town agriculture.
  709.  
  710.  
  711. #! rnews 820
  712. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.cais.net!n=
  713. ews.mathworks.com!tank.news.pipex.net!pipex!oleane!in2p3.fr!swidir.switch=
  714. .ch!01-newsfeed.univie.ac.at!02-newsfeed.univie.ac.at!news.ecrc.de!news00=
  715. .btx.dtag.de!not-for-mail
  716. From: R_Peters.Wiwo@t-online.de (Rolf-Herbert Peters)
  717. Newsgroups: comp.sys.cbm
  718. Subject: Comm128D to PC
  719. Date: 30 Jun 1996 15:44:40 GMT
  720. Organization: Redaktion Wirtschaftswoche
  721. Lines: 3
  722. Message-ID: <4r67d8$tlk@news00.btx.dtag.de>
  723. Mime-Version: 1.0
  724. Content-Type: text/plain; charset=3Dus-ascii
  725. Content-Transfer-Encoding: 7bit
  726. X-Sender: 0211887-2195@t-online.de (Verlagsgruppe Handelsbl.GmbH, Peters,=
  727. Rolf)
  728. X-Mailer: Mozilla 1.1I [de] (Windows; I; 16bit)
  729.  
  730. Who can help me? I need to tranfer text data saved on Commodore 128D disk=
  731. =20
  732. to PC. Is there any solution (software/hardware)?
  733.  
  734. #! rnews 593
  735. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  736. eed.internetmci.com!torn!nott!cunews!freenet-news.carleton.ca!FreeNet.Car=
  737. leton.CA!df465
  738. From: df465@FreeNet.Carleton.CA (Onno Ebbinge)
  739. Newsgroups: comp.sys.cbm
  740. Subject: Inside Commodore DOS
  741. Date: 3 Jul 1996 18:35:08 GMT
  742. Organization: National Capital Freenet, Ottawa, Canada
  743. Lines: 5
  744. Sender: df465@freenet6.carleton.ca (Onno Ebbinge)
  745. Message-ID: <4reegs$m06@freenet-news.carleton.ca>
  746. NNTP-Posting-Host: freenet6.carleton.ca
  747.  
  748.  
  749. Anyone who has a copy of the disk that you could order along with
  750. Inside Commodore DOS?
  751.  
  752. Onno
  753. #! rnews 1065
  754. Path: pravda.aa.msen.com!spool.mu.edu!sgigate.sgi.com!news1.best.com!nntp=
  755. .primenet.com!winternet.com!mr.net!news.mr.net!urvile.msus.edu!news
  756. From: "Matthew R. Kuehn" <selfish@vax1.bemidji.msus.edu>
  757. Newsgroups: comp.sys.cbm
  758. Subject: Missing FAQ Sections!
  759. Date: Thu, 27 Jun 1996 11:31:19 -0500
  760. Organization: TMC Productions
  761. Lines: 14
  762. Message-ID: <31D2B757.48CE@vax1.bemidji.msus.edu>
  763. NNTP-Posting-Host: 199.17.181.164
  764. Mime-Version: 1.0
  765. Content-Type: text/plain; charset=3Dus-ascii
  766. Content-Transfer-Encoding: 7bit
  767. X-Mailer: Mozilla 2.02 (Macintosh; I; PPC)
  768.  
  769. Hello!
  770.  
  771. I can't seem to find parts 1 and 8 of the General FAQ, v3.1.
  772. If anyone can help, please e-mail me the missing sections or let me know=20
  773. personally where to find them. Thanks.
  774.  
  775. Matthew R. Kuehn
  776. --=20
  777. +-------------  Matthew R. Kuehn, selfish@vax1.bemidji.msus.edu =20
  778. --------------+
  779.        GFA d H- s g+ !p !au a- w+ v C++$ USL- P? L 3- E---- N K W-- M++$
  780.           V -po+ Y+ t !5 j R G? tv b D B--- e+ u** h- f+ r++ !n y?>+++
  781. +-----  Visit TMC on the WWW at vax1.bemidji.msus.edu/~selfish/tmc.html =20
  782. ------+
  783. #! rnews 1714
  784. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!winternet.com!n=
  785. 1ott.istar!ott.istar!istar.net!newsfeed.internetmci.com!newsfeed.internet=
  786. mci.com!news.zeitgeist.net!news.pixi.com!news.hula.net!spartacus.hula.net=
  787. !jfenn
  788. From: Joesph Fenn <jfenn@spartacus.hula.net>
  789. Newsgroups: comp.sys.cbm
  790. Subject: Re: 1581 HD or DD
  791. Date: Wed, 3 Jul 1996 10:28:51 -1000
  792. Organization: Hula Net, Inc.  Hawaii's Newest Internet Provider
  793. Lines: 15
  794. Message-ID: <Pine.OSF.3.93.960703102332.18631C-100000@spartacus.hula.net>
  795. References: <Pine.OSF.3.93.960627132726.3776F-100000@spartacus.hula.net> =
  796. <4r93gb$264@mksrv1.dseg.ti.com> <4ra5qq$4q3@seagoon.newcastle.edu.au> <4r=
  797. co00$e9a@sjx-ixn4.ix.netcom.com>
  798. NNTP-Posting-Host: spartacus.hula.net
  799. Mime-Version: 1.0
  800. Content-Type: TEXT/PLAIN; charset=3DUS-ASCII
  801. To: ChrisC <jamesch@ix.netcom.com>
  802. In-Reply-To: <4rco00$e9a@sjx-ixn4.ix.netcom.com>
  803.  
  804. Furthermore ref DD/HD disks.  When I tried swap some empty DD disks to
  805. a PC user he frowned and said "I cant use those they only go out to
  806. 800K on format" or words to that effect.  I told him to try them anyway.
  807. He has Doc6.2 and a 486 DX2.   I tried the format cmd but his response
  808. was "unrecognized format".   In order to get around that he "bulk erased"
  809. the disks I gave him then tried it again.  He was shocked, as the format
  810. went right out to 1.6Mb no problem on first try.  He thought he had to
  811. poke out a hole in the disk to do that but found it was not required.
  812. When I passed this info on to other PC users they wouldnt believe me.
  813. The only catch is,  early versions of DOS would not do it, but anything
  814. after Dos 5 would.    Just making a point of we learn something every
  815. day if we dig deep.
  816.                    ***** kilroy *****
  817.  
  818.  
  819. #! rnews 1532
  820. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.mathworks.=
  821. com!newsfeed.internetmci.com!katbert.ipa.net!news
  822. From: Jim Self <himselfo@ipa.net (Jim Self)>
  823. Newsgroups: comp.sys.cbm
  824. Subject: MoEBIUS (free to 4th caller)
  825. Date: 3 Jul 1996 20:57:31 GMT
  826. Organization: Internet Partners of America
  827. Lines: 23
  828. Distribution: world
  829. Message-ID: <4remrs$fgv@katbert.ipa.net>
  830. NNTP-Posting-Host: 205.218.170.218
  831.  
  832. I've got way too much clutter. Games often come with systems that I buy. =
  833. So, I'm
  834. going to give away some games that I know I'll never use. I was trying to=
  835.  figure
  836. out how to do it and this is what I came up with:
  837.  
  838. I'll mail this game to the 4th (fourth thread) of this posting , not incl=
  839. uding this one,
  840. the original. I'll go by the date and time of the post to figure who it g=
  841. oes to. Hmm..
  842. different time zones????   (But what other method could I use?)   Oh well=
  843. , I'll do
  844. my best.
  845.  
  846. I'll send it anywhere in the world so feel free to reply.  DON'T reply by=
  847.  email
  848. please. The request needs to be in public and besides I don't want clutte=
  849. red email
  850. so you're disqualified if you do it wrong.
  851.  
  852. This time I'll give away  MoEBIUS (C=3D64) ... used, still in the box, un=
  853. tried by me.
  854. Contains two disks, pamphlet, player ref card.
  855.  
  856. Maybe the winner can pay the postage but if you feel you can't, I'll pay =
  857. it because
  858. this is just for fun.  I'll mail it right away to the winner and notify e=
  859. veryone here.
  860.  
  861. If this works OK, I'll do another right afterward.  If it makes everybody=
  862.  mad, I'll
  863. quit it.  No catch. Just for fun!
  864.  
  865. Jim Self
  866. #! rnews 1630
  867. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.cais.net!n=
  868. ews.mathworks.com!news-res.gsl.net!news.gsl.net!EU.net!usenet2.news.uk.ps=
  869. i.net!uknet!usenet1.news.uk.psi.net!uknet!psinntp!psinntp!psinntp!usenet
  870. From: wanderer_rtc@usa.pipeline.com(R. T. Cunningham)
  871. Newsgroups: comp.sys.cbm
  872. Subject: Re: Comm128D to PC
  873. Date: 3 Jul 1996 20:22:19 GMT
  874. Organization: Home
  875. Lines: 23
  876. Message-ID: <4rekpr$1kp@news2.h1.usa.pipeline.com>
  877. References: <4r67d8$tlk@news00.btx.dtag.de>
  878. NNTP-Posting-Host: 38.8.231.2
  879. X-PipeUser: wanderer_rtc
  880. X-PipeHub: usa.pipeline.com
  881. X-PipeGCOS: (R. T. Cunningham)
  882. X-Newsreader: Pipeline v3.5.0
  883.  
  884. On Jun 30, 1996 15:44:40 in article <Comm128D to PC>,
  885. 'R_Peters.Wiwo@t-online.de (Rolf-Herbert Peters)' wrote:=20
  886. =20
  887. >Who can help me? I need to tranfer text data saved on Commodore 128D dis=
  888. k=20
  889.  
  890. >to PC. Is there any solution (software/hardware)?=20
  891. =20
  892. I'm sure someone will respond with a hardware hack or something about
  893. Little Red Reader or Big Blue Reader...but I have a simple suggestion tha=
  894. t
  895. really works well, actually two suggestions.=20
  896. =20
  897. #1) If you have two phone lines, as most of us do nowadays, simply call o=
  898. ne
  899. with the other using a term for each.  Easiest is to dial with the PC, an=
  900. d
  901. type ATA from the term mode on the 128D.  You will be connected quickly a=
  902. nd
  903. efficiently.=20
  904. =20
  905. #2) Upload the text files to a local BBS.  You can even send them as E-Ma=
  906. il
  907. attachments addressed to yourself.  Then call the same BBS with your PC a=
  908. nd
  909. download them.  If you use XModem and the BBS supports it, it will even
  910. translate from PETASCII to ASCII while downloading.=20
  911. =20
  912. Of course, there's always the harder ways.=20
  913.  
  914. #! rnews 1269
  915. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!winternet.com!n=
  916. 1ott.istar!ott.istar!istar.net!van.istar!van-bc!news.mindlink.net!sol.ctr=
  917. .columbia.edu!spool.mu.edu!usenet.eel.ufl.edu!tank.news.pipex.net!pipex!u=
  918. senet2.news.uk.psi.net!uknet!usenet1.news.uk.psi.net!uknet!psinntp!psinnt=
  919. p!psinntp!usenet
  920. From: wanderer_rtc@usa.pipeline.com(Wanderer)
  921. Newsgroups: comp.sys.cbm
  922. Subject: Problems with E-Mail
  923. Date: 3 Jul 1996 20:29:17 GMT
  924. Organization: BBS SysOp Extraordinaire
  925. Lines: 14
  926. Message-ID: <4rel6t$27j@news2.h1.usa.pipeline.com>
  927. NNTP-Posting-Host: 38.8.231.2
  928. X-PipeUser: wanderer_rtc
  929. X-PipeHub: usa.pipeline.com
  930. X-PipeGCOS: (Wanderer)
  931. X-Newsreader: Pipeline v3.5.0
  932.  
  933. I do not remember the name or address of someone who was going to UPS me =
  934. a
  935. couple of books so that I can send him the money.  My ISP had problems wi=
  936. th
  937. their mail server and is installing a new one.  While this started going
  938. on, I switched hard drives in my PC and my saved E-Mail decided to go AWO=
  939. L.
  940.  
  941. =20
  942. If the person I'm supposed to send this to is reading this message, pleas=
  943. e
  944. hold off for a day or two before sending me the information via E-Mail.  =
  945. I
  946. have not received E-Mail for 3 days and just found out today it is becaus=
  947. e
  948. my mail server is totally not functional.=20
  949. =20
  950. Regards,=20
  951. =20
  952. ..Rich
  953. #! rnews 1384
  954. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!winternet.com!n=
  955. 1ott.istar!ott.istar!istar.net!van.istar!uniserve!oronet!news.sprintlink.=
  956. net!news-stk-11.sprintlink.net!news.mathworks.com!news.kei.com!newsfeed.i=
  957. nternetmci.com!hsno.wco.com!waldorf.csc.calpoly.edu!charnel.ecst.csuchico=
  958. .edu!usenet
  959. From: Phil Hoff <phoff@ecst.csuchico.edu>
  960. Newsgroups: comp.sys.cbm
  961. Subject: Re: C64 archivers
  962. Date: 3 Jul 1996 15:00:10 GMT
  963. Organization: California State University, Chico
  964. Lines: 20
  965. Message-ID: <4re1tq$dc8@charnel.ecst.csuchico.edu>
  966. References: <4r671a$ah@ousrvr3.oulu.fi>
  967. NNTP-Posting-Host: hoff.ecst.csuchico.edu
  968. Mime-Version: 1.0
  969. Content-Type: text/plain; charset=3Dus-ascii
  970. Content-Transfer-Encoding: 7bit
  971. X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
  972.  
  973. jakarppi@haapa.oulu.fi (Jari Karppinen) wrote:
  974. >Hello,
  975. >
  976.  
  977. >can anyone tell me how to unpack files with extension .SFX ?
  978. >It is supposed to be somekind of self extracting archive, right --- but=20
  979. >how do I get it to extract itself?
  980.  
  981.  
  982. Just load and run  it like it was a BASIC program.
  983.  
  984. >Also there were some LHA archives, which contained files with names
  985. >like: 1!turbo, 2!turbo etc.=20
  986. >
  987. >How to unpack those? (What files are they anyway....?)
  988. >I have also heard of zipcode... what might that be then?
  989.  
  990. This IS zipcode. See Chapter 6 of the Commodore FAQs on Jim Brain's home=20
  991. page (plus other places) http://www.msen.com/~brain
  992.  
  993. #! rnews 829
  994. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  995. eed.internetmci.com!uwm.edu!rutgers!dziuxsolim.rutgers.edu!camlaw.rutgers=
  996. .edu!not-for-mail
  997. From: more@camlaw.rutgers.edu (Mr. Self Destruct)
  998. Newsgroups: comp.sys.cbm
  999. Subject: Comm128D to PC
  1000. Date: 3 Jul 1996 17:38:58 -0000
  1001. Organization: Rutgers University
  1002. Lines: 14
  1003. Message-ID: <4rep9i$ovf@camlaw.rutgers.edu>
  1004. NNTP-Posting-Host: camlaw.rutgers.edu
  1005. X-Newsreader: TIN [LINUX 1.3 PL0]
  1006.  
  1007. Or even easier....
  1008.  
  1009. If you have one phone line:
  1010. 1. Take it off the hook, wait for it start beeping.
  1011. Eventually it will stop and the line will go "dead"
  1012.  
  1013. 2.  On one term program hit atdt123 or something
  1014. and on the other do ATA
  1015.  
  1016. Its worked for me so...
  1017.  
  1018. You have to wait for the line to go dead cause if not
  1019. one of those stupid operator messages comes on and throws you off.
  1020.  
  1021. #! rnews 1598
  1022. Newsgroups: alt.c64,comp.sys.cbm
  1023. Path: pravda.aa.msen.com!news1.best.com!sgigate.sgi.com!spool.mu.edu!howl=
  1024. and.reston.ans.net!newsfeed.internetmci.com!ns1.netone.com!news.sprintlin=
  1025. k.net!news-fw-12.sprintlink.net!eskimo!icebrkr
  1026. From: icebrkr@eskimo.com (Andrew Krepela)
  1027. Subject: Re: fond c64 memories
  1028. X-Nntp-Posting-Host: eskimo.com
  1029. Message-ID: <DtzME4.Mrp@eskimo.com>
  1030. Sender: news@eskimo.com (News User Id)
  1031. Organization: Eskimo North (206) For-Ever
  1032. References: <4rbe45$97t@yarrow.wt.com.au> <9607030744.AA001ce@orack.demon=
  1033. .co.uk>
  1034. Date: Wed, 3 Jul 1996 21:58:52 GMT
  1035. Lines: 24
  1036. Xref: pravda.aa.msen.com alt.c64:116 comp.sys.cbm:57368
  1037.  
  1038. In article <9607030744.AA001ce@orack.demon.co.uk>,
  1039. Mike B. <mike@orack.demon.co.uk> wrote:
  1040. >Bernard Marx () wrote:
  1041. >: I've been waiting for someone to post something to this group that
  1042. >: didnt involve a pyramid scam or whatever!  I too have fond memories of
  1043. >: the old c-64.  My first ever computer.  I knew that thing inside out
  1044.  =20
  1045.  Uh, guys.... this is kind of a "GHOST" Newsgroup, in that it gets very
  1046. few posts. HOWEVER:
  1047. =20
  1048.  Hundreds of messages if not thousands get posted weekly to the ACTIVE
  1049.  COMMODORE 64 Newsgroup:     =20
  1050.        =20
  1051.                         comp.sys.cbm
  1052.  
  1053.  Check it out for nostalgia and CURRENT C-64 information. alt.c64 is dead.
  1054. =20
  1055.  ICEBREAKER/BDS
  1056.  
  1057. --=20
  1058. \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
  1059. //  E-Mail: icebrkr@eskimo.com   //     Brain Damage Studios, Inc.    //
  1060. \\  Andrew Krepela/Icebreaker    \\   http://www.eskimo.com/~icebrkr  \\
  1061. ////////////////////////////////////////////////////////////////////////
  1062. #! rnews 1603
  1063. Path: pravda.aa.msen.com!news1.best.com!sgigate.sgi.com!news-res.gsl.net!=
  1064. news.gsl.net!usenet.eel.ufl.edu!tank.news.pipex.net!pipex!oleane!jussieu.=
  1065. fr!math.ohio-state.edu!uwm.edu!news.cse.psu.edu!news.cc.swarthmore.edu!ne=
  1066. tnews.upenn.edu!news.voicenet.com!news2.noc.netcom.net!noc.netcom.net!net=
  1067. com.net.uk!sunsite.doc.ic.ac.uk!lyra.csx.cam.ac.uk!uknet!usenet2.news.uk.=
  1068. psi.net!uknet!usenet1.news.uk.psi.net!uknet!psinntp!psinntp!psinntp!usene=
  1069. t
  1070. From: wanderer_rtc@usa.pipeline.com(R. T. Cunningham)
  1071. Newsgroups: comp.sys.cbm
  1072. Subject: Re: More 128D problems
  1073. Date: 3 Jul 1996 20:17:38 GMT
  1074. Organization: The World
  1075. Lines: 15
  1076. Message-ID: <4rekh2$1b7@news2.h1.usa.pipeline.com>
  1077. References: <4redoi$8g1@ruby.ucc.nau.edu>
  1078. NNTP-Posting-Host: 38.8.231.2
  1079. X-PipeUser: wanderer_rtc
  1080. X-PipeHub: usa.pipeline.com
  1081. X-PipeGCOS: (R. T. Cunningham)
  1082. X-Newsreader: Pipeline v3.5.0
  1083.  
  1084. On Jul 03, 1996 18:22:10 in article <More 128D problems>,
  1085. 'pap@dana.ucc.nau.edu (Paul Allen Panks)' wrote:=20
  1086. =20
  1087. >BTW, I check with ?PEEK(65408) and my bread-box 64 has the same kernal =20
  1088. >rom revision as my 128D's 64 mode. So how come there's still software =20
  1089. >incompatibility??=20
  1090. =20
  1091. I did some checking.  It's not the 128D's ROMs causing the problem.  It's
  1092. the cheap 1571CR (sometimes called 1571D) within the 128D.  If you want t=
  1093. o
  1094. continue using the drive, get the JiffyDOS upgrade for both the drive and
  1095. the computer.  It costs about $60.00 so don't throw away the old chips ju=
  1096. st
  1097. in case you get another 128D later on to put the JiffyDOS chips into.=20
  1098. =20
  1099. This is what I did with my 128D (and my previous 128D) and it solved the
  1100. problems with the drives.
  1101. #! rnews 690
  1102. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.cais.net!n=
  1103. ews.mathworks.com!hunter.premier.net!news.uoregon.edu!mars.efn.org!garcia=
  1104. .efn.org!dennis
  1105. From: Dennis Brew <dennis@efn.org>
  1106. Newsgroups: comp.sys.cbm
  1107. Subject: Swiftlink/Commport UART
  1108. Date: Wed, 3 Jul 1996 15:57:05 -0700
  1109. Organization: Oregon Public Networking
  1110. Lines: 10
  1111. Message-ID: <Pine.SUN.3.91.960701204819.6838A-100000-100000-100000-100000=
  1112. @garcia.efn.org>
  1113. NNTP-Posting-Host: garcia.efn.org
  1114. Mime-Version: 1.0
  1115. Content-Type: TEXT/PLAIN; charset=3DUS-ASCII
  1116.  
  1117. Can anyone tell me were I can get a SWIFTLINK OR COMMPORT UART cartridge=20
  1118. for a reasonable price?
  1119.  
  1120.  
  1121. If so please leave me e-mail my address is:
  1122.  
  1123. dennis@efn.org
  1124.  
  1125.  
  1126.  
  1127. #! rnews 676
  1128. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.cais.net!n=
  1129. ews.mathworks.com!hunter.premier.net!news.uoregon.edu!mars.efn.org!garcia=
  1130. .efn.org!dennis
  1131. From: Dennis Brew <dennis@efn.org>
  1132. Newsgroups: comp.sys.cbm
  1133. Subject: Swiftlink/Commport UART
  1134. Date: Wed, 3 Jul 1996 16:20:14 -0700
  1135. Organization: Oregon Public Networking
  1136. Lines: 7
  1137. Message-ID: <Pine.SUN.3.91.960703161704.16643A-100000@garcia.efn.org>
  1138. NNTP-Posting-Host: garcia.efn.org
  1139. Mime-Version: 1.0
  1140. Content-Type: TEXT/PLAIN; charset=3DUS-ASCII
  1141.  
  1142. I am looking for a SWIFTLINK or COMMPORT UART cartridge for a reasonable=20
  1143. price.
  1144.  
  1145. If anybody knows were I can get one please e-mail me at address below.
  1146.  
  1147. dennis@efn.org
  1148.  
  1149. #! rnews 1715
  1150. Path: pravda.aa.msen.com!news1.best.com!sgigate.sgi.com!spool.mu.edu!howl=
  1151. and.reston.ans.net!swrinde!newsfeed.internetmci.com!news.mci.com!news-w.a=
  1152. ns.net!newsfeeds.ans.net!news.lava.net!coconut!news.pixi.com!news.hula.ne=
  1153. t!spartacus.hula.net!jfenn
  1154. From: Joesph Fenn <jfenn@spartacus.hula.net>
  1155. Newsgroups: comp.sys.cbm
  1156. Subject: Re: More 128D problems
  1157. Date: Wed, 3 Jul 1996 12:59:04 -1000
  1158. Organization: Hula Net, Inc.  Hawaii's Newest Internet Provider
  1159. Lines: 17
  1160. Message-ID: <Pine.OSF.3.93.960703125206.26174B-100000@spartacus.hula.net>
  1161. References: <4redoi$8g1@ruby.ucc.nau.edu>
  1162. NNTP-Posting-Host: spartacus.hula.net
  1163. Mime-Version: 1.0
  1164. Content-Type: TEXT/PLAIN; charset=3DUS-ASCII
  1165. To: Paul Allen Panks <pap@dana.ucc.nau.edu>
  1166. In-Reply-To: <4redoi$8g1@ruby.ucc.nau.edu>
  1167.  
  1168. Paul, I think it boils down to this:
  1169. If the software was written for the 64 then its gonna work ok on the 64.
  1170. If the software is written for the 128 then the same is true for 128.
  1171. If the sofware is written for 64 mode using 128 basic or m/l then theres
  1172. a good chance it will not run properly on the 64 mode of the 128.
  1173. Even if you use the nice basic features of the 128 to write stuff for
  1174. use in 64 mode, then save the stuff as is, again problems when you run
  1175. it in 64 mode.  The line tokens in basic 7 arent gonna matchup with=20
  1176. the required ones for 64 mode.  This specially true if your using the
  1177. nice shortcuts directly in basic such as p(shifto) for poke etc etc.
  1178. So think about all that and you get the picture.  Also did you know
  1179. that some games that were written for 64modes will not run on a 128
  1180. or 128d even though it is properly shifted to 64 mode before trying
  1181. to run the game.  God what a windbag I am.
  1182.                  ***** kilroy *****
  1183.  
  1184.  
  1185. #! rnews 861
  1186. Path: pravda.aa.msen.com!news1.best.com!nntp.primenet.com!news.mathworks.=
  1187. com!newsfeed.internetmci.com!in2.uu.net!news.delphi.com!usenet
  1188. From: arca93@delphi.com
  1189. Newsgroups: comp.sys.cbm
  1190. Subject: Re: Zip Drives
  1191. Date: Wed, 3 Jul 96 19:36:15 -0500
  1192. Organization: Delphi (info@delphi.com email, 800-695-4005 voice)
  1193. Lines: 11
  1194. Message-ID: <ZxFNl1X.arca93@delphi.com>
  1195. References: <Pine.SGI.3.93.960702020504.17156A-100000@heart.engr.csulb.ed=
  1196. u>
  1197. NNTP-Posting-Host: bos1d.delphi.com
  1198. X-To: Dallas Legan <dlegan@engr.csulb.edu>
  1199.  
  1200. Dallas Legan <dlegan@engr.csulb.edu> writes:
  1201. =20
  1202. >Anyone done anything with hooking up Iomega Zip Disk Drives
  1203. >up to CBM machines out there?
  1204. =20
  1205. =20
  1206. I use one everyday on my 128. The Zip drive requires a SCSI interface and
  1207. so I use the CMD-HD as the interface. With the Zip added to the system, i=
  1208. t
  1209. basically makes my CMD-HD 100 megs larger.
  1210. =20
  1211. -Maurice
  1212. #! rnews 2086
  1213. Path: pravda.aa.msen.com!spool.mu.edu!sgigate.sgi.com!news.msfc.nasa.gov!=
  1214. newsfeed.internetmci.com!news.mathworks.com!news-res.gsl.net!news.gsl.net=
  1215. !EU.net!usenet2.news.uk.psi.net!uknet!usenet1.news.uk.psi.net!uknet!psinn=
  1216. tp!psinntp!psinntp!usenet
  1217. From: wanderer_rtc@usa.pipeline.com(Wanderer)
  1218. Newsgroups: comp.sys.cbm
  1219. Subject: Re: Zip Drives
  1220. Date: 4 Jul 1996 04:02:55 GMT
  1221. Organization: BBS SysOp Extraordinaire
  1222. Lines: 27
  1223. Message-ID: <4rffpf$fpb@news2.h1.usa.pipeline.com>
  1224. References: <31DAF54E.7655@orl.mindspring.com>
  1225. NNTP-Posting-Host: 38.8.231.3
  1226. X-PipeUser: wanderer_rtc
  1227. X-PipeHub: usa.pipeline.com
  1228. X-PipeGCOS: (Wanderer)
  1229. X-Newsreader: Pipeline v3.5.0
  1230.  
  1231. Radioactive Warrior wrote:=20
  1232. =20
  1233. >A friend of mine couldn't get his to talk to the ZIP drive using a CMD=20
  1234. >hard drive interface but he has had many problems with the thing anyway=20
  1235. >- stuff like only being able to use SCSI hard drives that will format=20
  1236. >using 256 bytes per sector (contrast the 512 bytes/sector standard...)=20
  1237. >So it could be his interface (or him...) but I would be very interested=20
  1238. >in the details...=20
  1239. =20
  1240. Using a ZIP drive requires that you use the SCSI version first of all (I'=
  1241. m
  1242. sure you already knew that).  Second, the CMD HD should be set up with
  1243. maximum partitions already set up on it.  Then, the add drive program
  1244. should be used to add one ZIP disk.  After that, a bridge partition has t=
  1245. o
  1246. be made (foreign mode partition).  Note should be taken of the remaining
  1247. blocks free on the CMD HD before adding the ZIP drive. It should be less
  1248. than 256 (the minimum partition size).  When you create the bridge
  1249. partition, it needs to be a mere 256 blocks, but 512 would be a safer
  1250. number.  Once the add drive function has been completed, you can create
  1251. partitions on the ZIP disk just like it was part of the HD.  One caveat,
  1252. though.  Since the partition table resides in partition 0 on the CMD HD,
  1253. every ZIP disk has to be treated identically.  Every time you put in a ne=
  1254. w
  1255. ZIP disk, you have to format the partitions that it shows on the partitio=
  1256. n
  1257. table.=20
  1258. =20
  1259. Hope this makes a clearer understanding of how to use it.=20
  1260. =20
  1261.  
  1262.  
  1263.  
  1264.  
  1265. =END=
  1266.