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

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