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

  1. #! rnews 1610
  2. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  3. eed.internetmci.com!peach!atl1!phred
  4. From: phred <phred@america.net>
  5. Newsgroups: comp.sys.cbm
  6. Subject: Re: d64
  7. Date: Sat, 20 Jul 1996 10:59:56 -0500
  8. Organization: America.Net, P.O. Box 1222, Alpharetta, GA 30239-1222
  9. Lines: 17
  10. Message-ID: <Pine.SOL.3.91.960720105753.14577B-100000@atl1>
  11. References: <31EB1549.21EB@cdsnet.net> <4sfv3q$kp3@dfw-ixnews2.ix.netcom.=
  12. com> <31F021D9.7389@softdisk.com> <4spicq$ped@herald.concentric.net>
  13. NNTP-Posting-Host: atl1.america.net
  14. Mime-Version: 1.0
  15. Content-Type: TEXT/PLAIN; charset=3DUS-ASCII
  16. X-Sender: phred@atl1
  17. In-Reply-To: <4spicq$ped@herald.concentric.net>=20
  18.  
  19. On 20 Jul 1996, Thomas Pinto wrote:
  20.  
  21. > Is there a command we can use with Unix to decompile this .D64 file???
  22.  
  23. There is a Unix source file somewhere that one can compile which will=20
  24. convert a .d64 file into a Zip-Code zipped disk format. I'm not sure=20
  25. where the source is, but you might try any of the FTP sites.
  26.  
  27. -------------------------------------------------------------------------=
  28. ----
  29. *          What, Me Clueless? I don't think so...I'm navigating          =
  30.    *
  31. *               the Internet on a Commodore 64, aren't I?                =
  32.    *
  33. *Look for me in the following spots:   _phred_ on #c-64 (in IRC)         =
  34.    *
  35. *Web Page - http://www.america.net/~phred                                =
  36.    *
  37. *(If I like you, I might even tell you where my secret links are...)  >B-=
  38. >  *
  39. *This signature is subject to change at my whim.  --  phred@america.net  =
  40.    *
  41. -------------------------------------------------------------------------=
  42. -----
  43.  
  44. #! rnews 7883
  45. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  46. eed.internetmci.com!newsxfer2.itd.umich.edu!portc01.blue.aol.com!newsstan=
  47. d.cit.cornell.edu!news.acsu.buffalo.edu!news.drenet.dnd.ca!crc-news.doc.c=
  48. a!nott!cunews!freenet-news.carleton.ca!FreeNet.Carleton.CA!df465
  49. From: df465@FreeNet.Carleton.CA (Onno Ebbinge)
  50. Newsgroups: comp.sys.cbm
  51. Subject: Guru help needed...
  52. Date: 20 Jul 1996 16:29:46 GMT
  53. Organization: National Capital Freenet, Ottawa, Canada
  54. Lines: 121
  55. Sender: df465@freenet6.carleton.ca (Onno Ebbinge)
  56. Message-ID: <4sr1hq$dgk@freenet-news.carleton.ca>
  57. NNTP-Posting-Host: freenet6.carleton.ca
  58.  
  59.  
  60. I hope you guru's can help me with formalizing the operation description =
  61. of
  62. the opcodes. There are a few formal operation description of the opcodes
  63. around, the two most important and widely known are the C64 PRG and C=3DH=
  64. acking
  65. (#1) listings. Sad to say that these are quite inaccurate.
  66. =20
  67. I tried to make an accurate formal operation description and I would like=
  68.  to
  69. hear that you checked it and approved it or any other comment regarding
  70. improvements/inaccuracies/etc are welcome.
  71. =20
  72. Take a special close look at the following instructions:
  73. =20
  74. Branches:  if [condition] then PCH - M7 -> PCH, PC + M -> PC
  75. ADC:       A + M + C -> A, A8 -> C
  76. SBC:       A + ~M + C -> A, A8 -> C
  77. CMP:       1 -> C, A + ~M + C, A8 -> C
  78. JSR:       PC - 1 -> PC, PCH -> ST, PCL -> ST, OL -> PCL, OH -> PCH
  79. RTS:       ST -> PCL, ST -> PCH, PC + 1 -> PC
  80. PHP:       P | 16 -> ST
  81. BRK:       1 -> I, PCH -> ST, PCL -> ST, P | 16 -> ST,
  82.            $FFFE -> PCL, $FFFF -> PCH
  83. =20
  84. What about the operations in decimal mode? What operations are affected a=
  85. nd
  86. how? How about the flags?
  87. =20
  88. Also check out the rest of the list!
  89. =20
  90. +---------+----------------------------------------------+---------------=
  91. --+
  92. | Memonic | Operation                                    | N V 1 B D I Z =
  93. C |
  94. +---------+----------------------------------------------+---------------=
  95. --+
  96. | ADC     | A + M + C -> A, A8 -> C                      | / / . . . . / =
  97. / |
  98. | AND     | A & M -> A                                   | / . . . . . / =
  99. . |
  100. | ASL     | M7 -> C, M << 1 -> M                         | / . . . . . / =
  101. / |
  102. | BCC     | if C =3D 0 then PCH - M7 -> PCH, PC + M -> PC  | . . . . . . =
  103. . . |
  104. | BCS     | if C =3D 1 then PCH - M7 -> PCH, PC + M -> PC  | . . . . . . =
  105. . . |
  106. | BEQ     | if Z =3D 1 then PCH - M7 -> PCH, PC + M -> PC  | . . . . . . =
  107. . . |
  108. | BIT     | A & M, M6 -> V                               | / / . . . . / =
  109. . |
  110. | BMI     | if N =3D 1 then PCH - M7 -> PCH, PC + M -> PC  | . . . . . . =
  111. . . |
  112. | BNE     | if Z =3D 0 then PCH - M7 -> PCH, PC + M -> PC  | . . . . . . =
  113. . . |
  114. | BPL     | if N =3D 0 then PCH - M7 -> PCH, PC + M -> PC  | . . . . . . =
  115. . . |
  116. | BRK     | 1 -> I, PCH -> ST, PCL -> ST, P | 16 -> ST,  |               =
  117.   |
  118. |         | $FFFE -> PCL, $FFFF -> PCH                   | . . . . . 1 . =
  119. . |
  120. | BVC     | if V =3D 0 then PCH - M7 -> PCH, PC + M -> PC  | . . . . . . =
  121. . . |
  122. | BVS     | if V =3D 1 then PCH - M7 -> PCH, PC + M -> PC  | . . . . . . =
  123. . . |
  124. | CLC     | 0 -> C                                       | . . . . . . . =
  125. 0 |
  126. | CLD     | 0 -> D                                       | . . . . 0 . . =
  127. . |
  128. | CLI     | 0 -> I                                       | . . . . . 0 . =
  129. . |
  130. | CLV     | 0 -> V                                       | . 0 . . . . . =
  131. . |
  132. | CMP     | 1 -> C, A + ~M + C, A8 -> C                  | / . . . . . / =
  133. / |
  134. | CPX     | 1 -> C, X + ~M + C, X8 -> C                  | / . . . . . / =
  135. / |
  136. | CPY     | 1 -> C, Y + ~M + C, Y8 -> C                  | / . . . . . / =
  137. / |
  138. | DEC     | M - 1 -> M                                   | / . . . . . / =
  139. . |
  140. | DEX     | X - 1 -> X                                   | / . . . . . / =
  141. . |
  142. | DEY     | Y - 1 -> Y                                   | / . . . . . / =
  143. . |
  144. | EOR     | A ^ M -> A                                   | / . . . . . / =
  145. . |
  146. | INC     | M + 1 -> M                                   | / . . . . . / =
  147. . |
  148. | INX     | X + 1 -> X                                   | / . . . . . / =
  149. . |
  150. | INY     | Y + 1 -> Y                                   | / . . . . . / =
  151. . |
  152. | JMP     | OL -> PCL, OH -> PCH                         | . . . . . . . =
  153. . |
  154. | JSR     | PC - 1 -> PC, PCH -> ST, PCL -> ST,          |               =
  155.   |
  156. |         | OL -> PCL, OH -> PCH                         | . . . . . . . =
  157. . |
  158. | LDA     | M -> A                                       | / . . . . . / =
  159. . |
  160. | LDX     | M -> X                                       | / . . . . . / =
  161. . |
  162. | LDY     | M -> Y                                       | / . . . . . / =
  163. . |
  164. | LSR     | M0 -> C, M >> 1 -> M                         | 0 . . . . . / =
  165. / |
  166. | NOP     | [no operation]                               | . . . . . . . =
  167. . |
  168. | ORA     | A | M -> A                                   | / . . . . . / =
  169. . |
  170. | PHA     | A -> ST                                      | . . . . . . . =
  171. . |
  172. | PHP     | P | 16 -> ST                                 | . . . . . . . =
  173. . |
  174. | PLA     | ST -> A                                      | / . . . . . / =
  175. . |
  176. | PLP     | ST -> P                                      |   From Stack  =
  177.   |
  178. | ROL     | M7 -> T, M << 1 -> M, C -> M0, T -> C        | / . . . . . / =
  179. / |
  180. | ROR     | M0 -> T, M >> 1 -> M, C -> M7, T -> C        | / . . . . . / =
  181. / |
  182. | RTI     | ST -> P, ST -> PCL, ST -> PCH                |   From Stack  =
  183.   |
  184. | RTS     | ST -> PCL, ST -> PCH, PC + 1 -> PC           | . . . . . . . =
  185. . |
  186. | SBC     | A + ~M + C -> A, A8 -> C                     | / / . . . . / =
  187. / |
  188. | SEC     | 1 -> C                                       | . . . . . . . =
  189. 1 |
  190. | SED     | 1 -> D                                       | . . . . 1 . . =
  191. . |
  192. | SEI     | 1 -> I                                       | . . . . . 1 . =
  193. . |
  194. | STA     | A -> M                                       | . . . . . . . =
  195. . |
  196. | STX     | X -> M                                       | . . . . . . . =
  197. . |
  198. | STY     | Y -> M                                       | . . . . . . . =
  199. . |
  200. | TAX     | A -> X                                       | / . . . . . / =
  201. . |
  202. | TAY     | A -> Y                                       | / . . . . . / =
  203. . |
  204. | TSX     | S -> X                                       | / . . . . . / =
  205. . |
  206. | TXA     | X -> A                                       | / . . . . . / =
  207. . |
  208. | TXS     | X -> S                                       | . . . . . . . =
  209. . |
  210. | TYA     | Y -> A                                       | / . . . . . / =
  211. . |
  212. +---------+----------------------------------------------+---------------=
  213. --+
  214. =20
  215. =20
  216.                 The following notation applies to this summary:
  217. =20
  218. =20
  219. $xxxx    Memory location               N        Negative flag
  220. &        Bitwise AND                   OH       Operand high byte
  221. +        Addition                      OL       Operand low byte
  222. ,        Chain operator                P        Processor status register
  223. -        Subtraction                   PC       Program counter
  224. ->       Transfer to                   PCH      Program counter high byte
  225. .        No change in flag             PCL      Program counter low byte
  226. /        Possible change in flag       S        Stack pointer
  227. << n     Shift left n bits             ST       Stack location ($0100,S)
  228. =3D        Equality test                 T        Temporary bit
  229. >> n     Shift right n bits            V        Overflow flag
  230. A        Accumulator                   X        Index Register X
  231. B        BRK command flag              Y        Index Register Y
  232. C        Carry flag                    Z        Zero flag
  233. D        Decimal mode flag             ^        Bitwise exclusive OR
  234. I        IRQ disable flag              r8       Register overflow reminde=
  235. r
  236. M        Memory                        |        Bitwise OR
  237. Mn       Memory bit n                  ~        One's complement
  238. =20
  239. [comment]                              Comments
  240. if [condition] then [operation]        Conditional expression
  241. =20
  242.  
  243.  
  244. Have fun,
  245.  
  246. Onno
  247. #! rnews 1167
  248. Path: pravda.aa.msen.com!news1.best.com!newshub.sdsu.edu!newsfeeder.sdsu.=
  249. edu!newspump.sol.net!news.inc.net!news.moneng.mei.com!uwm.edu!news.cse.ps=
  250. u.edu!news.math.psu.edu!ra.nrl.navy.mil!lamarck.sura.net!mother.usf.edu!n=
  251. s1.thpl.lib.fl.us!scfn!sfpu
  252. From: sfpu@scfn.thpl.lib.fl.us (James R. Saleeby)
  253. Newsgroups: comp.sys.cbm
  254. Subject: Re: WTB: C64/128 stuff
  255. Date: 20 Jul 1996 17:02:08 GMT
  256. Organization: Suncoast Free-Net
  257. Lines: 15
  258. Message-ID: <4sr3eg$9bs@ns1.thpl.lib.fl.us>
  259. References: <4s0tei$c2j@goodnews.voicenet.com> <4s1ia7$7cb@newsbf02.news.=
  260. aol.com>
  261. NNTP-Posting-Host: scfn.thpl.lib.fl.us
  262. X-Newsreader: TIN [version 1.2 PL2]
  263.  
  264. El Phantas (elphantas@aol.com) wrote:
  265. : In article <4s0tei$c2j@goodnews.voicenet.com>, decibel@voicenet.com ()
  266. : writes:
  267.  
  268. : > looking to buy C64 and 128 stuff let me know what you have (anything)
  269. : >
  270.  
  271. : You want all of us to e-mail you a list of everything we have?
  272.  
  273. : Right!
  274.   I have plenty of commodore "stuff" from 1541 dd's to c64 with p.s.
  275. printers, etc. tell me how many of each you want I's give you a price "yo=
  276. u
  277. can't refuse". 1541 dd, c64 with p.s., printers, joysticks,software to
  278. numerous to name. Jim s sfpu@scfn.thpl.lib.us
  279.  
  280. #! rnews 713
  281. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  282. eed.internetmci.com!in2.uu.net!news.GANet.NET!odin.oar.net!malgudi.oar.ne=
  283. t!gwis.com!not-for-mail
  284. From: randy00@gwis.com (randy00)
  285. Newsgroups: comp.sys.cbm
  286. Subject: Modems?
  287. Date: 20 Jul 1996 18:52:52 GMT
  288. Organization: Gateway to Internet Services
  289. Lines: 7
  290. Message-ID: <4sr9u4$s24@gwis.com>
  291. NNTP-Posting-Host: darcy.gwis.com
  292. X-Newsreader: TIN [UNIX 1.3 950824BETA PL0]
  293.  
  294.  I'm thinking of upgrading my modem speed and was wondering what=20
  295. some of the better modems are that will work with the 64 and swiftlink=20
  296. cable and also will work on ibm. Thanks.
  297.  
  298.  Also if anyone has a used one they want to sell. I'm looking for a 28.8.
  299. randy00@gwis.com
  300.  
  301. #! rnews 528
  302. Newsgroups: comp.sys.cbm
  303. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!nntp.=
  304. coast.net!netnews.worldnet.att.net!ix.netcom.com!tor-nn1.netcom.ca!torfre=
  305. e!ai641
  306. From: ai641@torfree.net (Gary Chiasson)
  307. Subject: Wanted: Printer driver file
  308. Message-ID: <Duus7B.2yE.0.sheppard@torfree.net>
  309. Organization: Toronto Free-Net
  310. X-Newsreader: TIN [version 1.2 PL2]
  311. Date: Sat, 20 Jul 1996 17:49:58 GMT
  312. Lines: 7
  313.  
  314. I NEED I NEED I NEED the MPS-802 (1526) printer driver file for use with
  315. PrintMaster / Print Shop.
  316.  
  317. G.C.
  318.  
  319. --=20
  320.  
  321. #! rnews 2053
  322. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  323. eed.internetmci.com!news.uoregon.edu!vixen.cso.uiuc.edu!newsfeed.ksu.ksu.=
  324. edu!news.cis.okstate.edu!usenet
  325. From: alspach@okstate.edu
  326. Newsgroups: comp.sys.cbm
  327. Subject: Commodore 64 system and software for sale
  328. Date: 20 Jul 1996 19:23:19 GMT
  329. Organization: Oklahoma State University, Stillwater OK
  330. Lines: 91
  331. Message-ID: <4srbn7$i9t@news.cis.okstate.edu>
  332. Reply-To: alspach@math.okstate.edu
  333. NNTP-Posting-Host: dialin22.remote.okstate.edu
  334. Summary: FS:C64 system and software
  335. X-Newsreader: IBM NewsReader/2 v1.2
  336.  
  337. C64 system and software for sale.
  338.  
  339. I would prefer to sell the whole system and software together,
  340. but will consider individual offers. $100 + shipping for the works.
  341.  
  342. Hardware:
  343. Commodore 64 and 2 1541 disk drives with 1541 flash
  344.  
  345. Mannesmann Tally Spirit 80 9 pin dot matrix printer
  346.  
  347. Cardco Interface
  348.  
  349. Hesmodem II
  350.  
  351. Koala Pad
  352.  
  353. Pointmaster Joystick
  354.  
  355. Software:
  356.  
  357. Cartridges
  358.         Centipede
  359.         Kindercomp
  360. Disk
  361.         Arcade Mega-Hits:Paperboy,Blockbuster,Roadrunner, Gauntlet,Indian=
  362. a
  363.         Jones and the Temple of Doom.
  364.  
  365.         Tink Tonk Complete Learning Set (6 disks)
  366.  
  367.         Astro-Grover
  368.  
  369.         Dinosaurs
  370.  
  371.         Stickybears ABC
  372.         Stickybears Shapes
  373.  
  374.         Charlie Brown's ABC
  375.  
  376.         Big Bird's Special Delivery
  377.  
  378.         Frogger/Threshold
  379.  
  380.         Geos 2.0
  381.  
  382.         Ghostbusters
  383.     Ghostbusters II
  384.  
  385.     GI Joe
  386.  
  387.     Duck Tales, Quest for Gold
  388.  
  389.  
  390.     Flight Simulator II
  391.  
  392.     Logo
  393.  
  394.     Multiplan
  395.  
  396.     Superbase 64 (no manual)
  397.  
  398.     Disector V3.0
  399.  
  400.     Paperback Writer 64 (no manual)
  401.  
  402.     Where in the World is Carmen Sandiego
  403.  
  404.     Fisher-Price Little People Bowling Alley
  405.  
  406.         Music Construction Set
  407.  
  408.         Altered Beast
  409.  
  410.         Teenage Mutant Ninja Turtles
  411.  
  412.         Pole Position
  413.  
  414.         Choplifter/David's Midnight Magic
  415.  
  416.         Bad Dudes
  417.  
  418.         Peter Rabbit Reading
  419. Books
  420.  
  421.         How to get the most out of Geos
  422.  
  423.         Commodore 64 Programmer's Reference Guide
  424.  
  425.         Machine Language for Beginners
  426.  
  427. Dale Alspach
  428. alspach@math.okstate.edu
  429. #! rnews 991
  430. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  431. eed.internetmci.com!news.ac.net!news.serv.net!nntp.teleport.com!ip-pdx11-=
  432. 36
  433. From: house127@teleport.com (127 House)
  434. Newsgroups: comp.sys.cbm
  435. Subject: ID This Hardware: Hearsay 1000
  436. Date: 20 Jul 1996 20:17:42 GMT
  437. Organization: 127 House
  438. Lines: 15
  439. Message-ID: <4sret6$qa@nadine.teleport.com>
  440. NNTP-Posting-Host: ip-pdx11-36.teleport.com
  441. X-Newsreader: News Xpress Version 1.0 Beta #3
  442.  
  443. What is it?  I bought it at a thrift store.
  444.  
  445. Black box labeled 'HEARSAY 1000.'  Circuit board fits right in the Commod=
  446. ore=20
  447. port.  Plug fits right in one of the C64 sockets.  Appears to have a=20
  448. microphone.  Does nothing when I boot up while plugged in.
  449.  
  450. What could it be?  What have I got?  What do I need to make it go?
  451.  
  452. Thanks in advance,
  453. - Trevor Blkae
  454.  
  455.  
  456.   127 House - An Independent Archive of Systematic Ideology
  457.   P.O. Box 2321 Portland OR 97208-2321 USA - (503) 635-1796
  458.   house127@teleport.com - http://www.teleport.com/~house127
  459. #! rnews 1561
  460. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!nntp.=
  461. coast.net!zombie.ncsc.mil!news.mathworks.com!newsfeed.internetmci.com!in2=
  462. .uu.net!demos!solace!xinit!newsfeed.tip.net!newsfeed1.telia.com!d1o2.teli=
  463. a.com!usenet
  464. From: m9944@abc.se (Peter Karlsson)
  465. Newsgroups: comp.sys.cbm
  466. Subject: Re: Errors in online docs
  467. Date: Sat, 20 Jul 1996 19:52:05 GMT
  468. Organization: http://www.mds.mdh.se/~dat95pkn
  469. Lines: 24
  470. Message-ID: <4sre49$3re@d1o2.telia.com>
  471. References: <4sm9dp$n9e@freenet-news.carleton.ca>
  472. NNTP-Posting-Host: t8o2p2.telia.com
  473. X-Newsreader: Forte Free Agent 1.0.82
  474.  
  475. In article <4sm9dp$n9e@freenet-news.carleton.ca>,
  476. df465@FreeNet.Carleton.CA (Onno Ebbinge) wrote:
  477.  
  478. >>   SCREEN CODES
  479. >>
  480. >>     SET 1   SET 2   POKE  |  SET 1   SET 2   POKE  |  SET 1   SET 2   =
  481. POKE
  482. >>   ------------------------+------------------------+------------------=
  483. -----
  484. >>                           |                        |
  485. >>       @               0   |    C       c       3   |    F       f     =
  486.   6
  487. >>       A       a       1   |    D       d       4   |    G       g     =
  488.   7
  489. >>       B       b       2   |    E       e       5   |    H       h     =
  490.   8
  491. > - In the screen codes poke 0 in set 2 must be a '@' (at sign).
  492.  
  493. Well, the table (in all the version I've seen it) mean that if no SET
  494. 2 character is mentioned, it's the same as in SET 1...
  495.  
  496. Otherwise, I think the errors you spotted are correct. Some seem to be
  497. OCR errors... (Those are hard to spot).
  498.  
  499.  
  500. \\//
  501. Peter - m9944@abc.se - Fidonet 2:204/145.42
  502.       - May not be distributed via the microsoft network
  503.  
  504. #! rnews 2554
  505. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  506. eed.internetmci.com!inXS.uu.net!news.voicenet.com!omni2!legion
  507. From: legion@voicenet.com (David Talento)
  508. Newsgroups: comp.sys.cbm
  509. Subject: Third Party C64 Power Supply?
  510. Date: 20 Jul 1996 20:32:32 GMT
  511. Organization: Voicenet - Internet Access - (215)674-9290
  512. Lines: 57
  513. Message-ID: <4srfp0$fcc@gnews2.voicenet.com>
  514. NNTP-Posting-Host: omni2.voicenet.com
  515. X-Newsreader: TIN [version 1.2 PL2]
  516.  
  517.  
  518. Last year I tried s depsarelety to getv into C64 computers. Over the=20
  519. course of three months I picked up no less that three c64s, one C128, and=
  520. =20
  521. two 1541 disk drives.
  522.  
  523. All of them ended up dying a quick death. the C64s burnt out, the disk=20
  524. drives quit, the C128 went blank. All of this in different places with=20
  525. surge protectors, good current, etc etc.
  526.  
  527. I threw it all out and sold the remains for scrap losing about $150+.
  528.  
  529. Now I'm stupid enough to want to try it again *but* I don't wnat the same=
  530. =20
  531. thing to happen. I'm told the main reason C64s blow up is due to bad=20
  532. powersupplies so I'm thinking this might be the way to attack the problem=
  533. =20
  534. upfront.
  535.  
  536. When I was shopping last year i remember reading about a third party=20
  537. company that made their own regulated C64 power supply with two fuses=20
  538. for around $30. They also did commodore repairs and sold  refurbished=20
  539. units. Supposedly they guarenteed that thier power supplies would not fry=
  540. =20
  541. a C64 so if I got a computer for $25 and a power supply for $30+ it would=
  542. =20
  543. be a healthy, happy, solid unit.
  544.  
  545. Does anyone know of this place? Does this sound like the safest way to=20
  546. try again? Should I even bother?
  547.  
  548. more importantly are their new or more stable C64s that I could check=20
  549. out> I don't wnat to spend a fortune but since I spent a lot of time and=20
  550. moeny for a frustrating nothing last time it makles sense to pay a little=
  551. =20
  552. more upfront for a system that won't flake.
  553.  
  554. I still have a ton of software, manuals, original boxes and magazines of=20
  555. stuff to trade if anyone has the above that I'm looking for. I basically=20
  556. just want a unit to make weird music on and remeber all sorts of=20
  557. wonderful noises I did with some programs I had back when the ^%$#in=20
  558. things did work.
  559.  
  560. please email any suggestions or contacts.=20
  561.  
  562. thanks!
  563.  
  564. Legion@voicenet.com
  565.  
  566. --------
  567. Help Wanted Productions - Bringing you the best in organic electronic and=
  568. =20
  569. sweaty rock music since we started.  Http://www.voicenet.com/~legion
  570.  
  571. Now available for order: Electronic Music Project compilation cd.
  572. Over one hour of electronic music from Space to Jungle.  Only $10!
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581. #! rnews 1171
  582. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!nntp.=
  583. coast.net!fu-berlin.de!news.coli.uni-sb.de!not-for-mail
  584. From: kuzi@mpi-sb.mpg.de (Kurt Ziegenbein)
  585. Newsgroups: comp.sys.cbm
  586. Subject: C128 (PAL) <--> SCART - Video
  587. Date: 20 Jul 1996 20:43:56 GMT
  588. Organization: Max-Planck-Institut fuer Informatik
  589. Lines: 22
  590. Message-ID: <4srgec$34j@coli-gate.coli.uni-sb.de>
  591. NNTP-Posting-Host: batman.ag1.mpi-sb.mpg.de
  592. X-Newsreader: TIN [UNIX 1.3 950824BETA PL0]
  593.  
  594. hello all,
  595.  
  596. Is it possible to connect the video output of a C128 to the
  597. SCART input of a Television Set ?
  598.  
  599. 1) the 40 char - output (luminance/chrominance)
  600. 2) the 80 char - output (RGBI)
  601.  
  602. Is it possible to make cables for the both cases ?
  603.  
  604. if you have any idea to help me, please contact me :)
  605.  
  606. ciao
  607.         Kurt
  608. --=20
  609. _______________________________________________________________________
  610.  
  611.    Kurt                 EMAIL:     kuzi@mpi-sb.mpg.de
  612.    Ziegenbein           SnailMAIL: M"olschbacher Stra\3e 5
  613.                                    66482 Zweibr"ucken / Germany
  614.   <A HREF=3D"http://www.mpi-sb.mpg.de/~kuzi/"><I>my homepage</I></A>
  615. _______________________________________________________________________
  616. #! rnews 1821
  617. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  618. eed.internetmci.com!news.corpcomm.net!funny.bahnhof.se!news
  619. From: jonasth@bahnhof.se (Jonas Thorell)
  620. Newsgroups: comp.sys.amiga.games,comp.sys.cbm
  621. Subject: Re: ESCOM Germany Bankrupt
  622. Date: 20 Jul 96 22:53:07 -500
  623. Organization: Bahnhof Internet Access AB
  624. Lines: 29
  625. Message-ID: <1243.6775T1373T365@bahnhof.se>
  626. References: <1397.6775T839T592@mbox.vol.it>
  627. NNTP-Posting-Host: pppnode15.bahnhof.se
  628. X-System: Amiga 1200/030@50 Mhz, 10 Meg, 1 Gig HD, 28k8
  629. X-Software: Aweb, Miami, Thor
  630. X-Misc-info: Who's reading this??
  631. X-Newsreader: THOR 2.31 (Amiga;TCP/IP)
  632. Xref: pravda.aa.msen.com comp.sys.amiga.games:108387 comp.sys.cbm:58239
  633.  
  634.  
  635. Fabio Bizzetti (bizzetti@mbox.vol.it) wrote
  636. >David Evans (dfevans@bbcr.uwaterloo.ca) wrote:
  637. >>In article <948.6773T988T710@mbox.vol.it>,
  638. >>Fabio Bizzetti <bizzetti@mbox.vol.it> wrote:
  639. >>>AFAIK Commodore is _very_ old, it existed much before they began to ma=
  640. ke
  641. >>>personal computers (they made typewriters and such, as Olivetti).
  642.  
  643. >>  Yep, they are quite old.  1958, as I recall, as a typewriter repair s=
  644. hop
  645. >>  in
  646. >>Toronto.  I think they were on Bloor somewhere, but am not sure.  The f=
  647. irst
  648. >>World of Commodore, in 1983, was arranged as a sort of 25th anniversary
  649. >>event.
  650. >>  Anyone know why it started in Toronto?  Jack wasn't Canadian as far a=
  651. s I
  652. >>know.
  653.  
  654. >(Tramiel?):
  655. >Was Jack Tramiel the founder of Commodore? Are you sure?
  656.  
  657. I'm sure. Jack Tramiel is the founder of Commodore.
  658.  
  659. ---
  660. Jonas Thorell        |Internet: jonasth@bahnhof.se |"Animals are our
  661. Skyttbacksv=E4gen 11   |Fidonet:  2:206/124.7        |to  wear, eat and
  662. 740 34  Skyttorp     |Voice:    +46-18-352444      | experiment on"
  663. Sweden               |                             |- Cat rapes dog
  664. ---
  665. AU$@#%^&46F*HEY CAT! <>...and stay OFF the keyboard!
  666.  
  667. #! rnews 1751
  668. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  669. eed.internetmci.com!iol!usenet
  670. From: Mali <oilbail@iol.ie>
  671. Newsgroups: comp.sys.cbm
  672. Subject: Are you the one who can help me out?
  673. Date: 20 Jul 1996 21:29:37 GMT
  674. Organization: Ireland On-Line
  675. Lines: 21
  676. Message-ID: <4srj41$mus@nuacht.iol.ie>
  677. NNTP-Posting-Host: dialup-286.dublin.iol.ie
  678. Mime-Version: 1.0
  679. Content-Type: text/plain; charset=3Dus-ascii
  680. Content-Transfer-Encoding: 7bit
  681. X-Mailer: Mozilla 1.12(Macintosh; I; 68K)
  682. X-URL: news:comp.sys.cbm
  683.  
  684. I'll make this short and sweet. I have had a Commodore 64 for as long as=20
  685. I can remember (well 1981 anyway). A game called "Exile", from the=20
  686. software house 'Audiogenic' has been bugging me for the last few years.=20
  687. I played it to within an inch of completion, then got stuck!!! But I=20
  688. figured I could just hang in there until a full solution came out in=20
  689. some C64 magazine or other ... little did I know that looming on the=20
  690. horizon were the 16-bits that were to ruthlessly end the C64's life!=20
  691. (Hah! I was glad to see them get their own share of that treatment when=20
  692. that the 32-bitters did the same to them, and now, visible on the=20
  693. horizon is Nintendo's Ultra 64 to lay it's vengeance upon the=20
  694. 32-bitters, who won't know what hit them!) Ooops, got sidetracked there,=20
  695. sorry. Anyway, can anyone tell me how to finish Exile? Please!?!? I got=20
  696. to the screen where the maggot making machine was within my sights, but=20
  697. I could not do anything about it because of the wall that was in the=20
  698. way, with only a tiny crack in it, that I could not fit into. It will=20
  699. mean a Hell of a lot to me if you could help me, and you would be=20
  700. helping me put to rest a very unhealthy obsession!
  701. Thanking you in advance,
  702. Mart.
  703.  
  704.  
  705. #! rnews 1233
  706. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  707. eed.internetmci.com!newsxfer2.itd.umich.edu!netnews.worldnet.att.net!ix.n=
  708. etcom.com!jamescha
  709. From: jamesch@ix.netcom.com (ChrisC)
  710. Newsgroups: comp.sys.cbm
  711. Subject: Re: d64
  712. Date: Sat, 20 Jul 96 21:23:55 GMT
  713. Organization: Netcom
  714. Lines: 13
  715. Message-ID: <4srinf$m58@dfw-ixnews2.ix.netcom.com>
  716. References: <31EB1549.21EB@cdsnet.net> <4sfv3q$kp3@dfw-ixnews2.ix.netcom.=
  717. com> <31F021D9.7389@softdisk.com>
  718. NNTP-Posting-Host: orl-fl3-09.ix.netcom.com
  719. X-NETCOM-Date: Sat Jul 20  4:22:55 PM CDT 1996
  720. X-Newsreader: News Xpress 2.0 Beta #0
  721.  
  722. In article <31F021D9.7389@softdisk.com>, Jeff Jones <loadstar@softdisk.co=
  723. m> wrote:
  724. >ChrisC wrote:
  725. >
  726. >
  727. >> The .d64 files are actually disk images used for the IBM C64S emulator=
  728. .  They
  729. >> can be restored to thier original format with a program I wrote, downl=
  730. oadable
  731. >> at members.aol.com/xdr12/download/  the program name is D64-REST.TXT a=
  732. nd
  733. >> D64-REST.PRG.  Be forewarnd, the program is slllooowww.
  734. >
  735. >LOADSTAR published a GEOS progam called geoBeap, which creates and conve=
  736. rts
  737. >..d64 files.  It was only about 4 issues ago.  The program was by Bo Zim=
  738. merman.
  739.  
  740. I need to check out my back issues.  Do you remember which one that was o=
  741. n?
  742. #! rnews 1353
  743. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  744. eed.internetmci.com!newsxfer2.itd.umich.edu!netnews.worldnet.att.net!ix.n=
  745. etcom.com!jamescha
  746. From: jamesch@ix.netcom.com (ChrisC)
  747. Newsgroups: comp.sys.cbm
  748. Subject: Re: Problem with 1541 DD --- help!
  749. Date: Sat, 20 Jul 96 21:28:03 GMT
  750. Organization: Netcom
  751. Lines: 20
  752. Message-ID: <4sriv7$m58@dfw-ixnews2.ix.netcom.com>
  753. References: <mspinks.837837047@giaeb>
  754. NNTP-Posting-Host: orl-fl3-09.ix.netcom.com
  755. X-NETCOM-Date: Sat Jul 20  4:27:03 PM CDT 1996
  756. X-Newsreader: News Xpress 2.0 Beta #0
  757.  
  758. In article <mspinks.837837047@giaeb>, mspinks@giaeb.cc.monash.edu.au (Mat=
  759. thew Spinks) wrote:
  760. >Hi All,
  761. >
  762. >An old-style 1541 disk drive of mine has developed a problem.   When I t=
  763. urn
  764. >it on, all that happens is the green power light lights up, and the red =
  765. error
  766. >light flashes periodically, whilst the motor runs continuously.   I can'=
  767. t
  768. >read the error channel, get a directory listing, or perform any I/O comm=
  769. ands.
  770. >Can anyone tell me what's likely to be wrong with it, and whether the pr=
  771. oblem
  772. >can be easily fixed?
  773. >
  774. >Thanks,
  775. >
  776. >- Matthew.
  777. >
  778.  
  779. Does this only happen with a disk inside?  If so, try cleaning the drive=20
  780. heads.  If it acts this way even without a disk, try opening the case and=
  781. =20
  782. pressing down on all the socketed chips.  I also heard that this is a sym=
  783. ptom=20
  784. of a bad power regulator.
  785.  
  786. #! rnews 603
  787. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!news.=
  788. mathworks.com!hunter.premier.net!news.uoregon.edu!news.algonet.se!sophocl=
  789. es.algonet.se!sledge
  790. From: Thomas Karlsen <sledge@algonet.se>
  791. Newsgroups: comp.sys.cbm
  792. Subject: IGNORE THIS MAIL
  793. Date: Sat, 20 Jul 1996 23:45:16 +0200
  794. Organization: AlgoNet Public Access Node, Stockholm
  795. Lines: 3
  796. Message-ID: <Pine.SOL.3.92.960720234454.3244B-100000@sophocles.algonet.se=
  797. >
  798. NNTP-Posting-Host: sophocles.algonet.se
  799. NNTP-Posting-User: bc74d280801a771bf93c87732e2a5b740
  800. Mime-Version: 1.0
  801. Content-Type: TEXT/PLAIN; charset=3DUS-ASCII
  802.  
  803.  
  804. Just a test.
  805.  
  806. #! rnews 1482
  807. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  808. eed.internetmci.com!info.ucla.edu!unixg.ubc.ca!news.bc.net!arclight.uoreg=
  809. on.edu!dispatch.news.demon.net!demon!mail2news.demon.co.uk!gate.demon.co.=
  810. uk
  811. From: Jason <tmr@cosine.demon.co.uk>
  812. Newsgroups: comp.sys.cbm
  813. Subject: Re: legoland
  814. Date: Sat, 20 Jul 96 21:47:26 GMT
  815. Organization: Cosine Systems
  816. Lines: 17
  817. Message-ID: <9607202147.AA004r4@cosine.demon.co.uk>
  818. References: <4sp1tp$clc@newsbf02.news.aol.com>
  819. X-NNTP-Posting-Host: gate.demon.co.uk
  820. X-Newsreader: TIN [AMIGA 1.3 950726BETA PL0]
  821. X-Mail2News-Path: relay-1.mail.demon.net!gate.demon.co.uk
  822.  
  823. Blitzkrieg:
  824. : who can help me running flt's legoland III under c64s???
  825.  
  826. This is a joke right?  The odds of getting a demo like Legoland III
  827. running under *any* emulator at full capacity are pretty close to nill.
  828. Hell, the C64S can't even handle my 1993 release Lethargy correctly
  829. and that is simple compared to L3.
  830.  
  831. Jason  =3D-)
  832.      ____________________________________________________________________=
  833. ___
  834. TMR /     /     /     /  /     /     /                                   =
  835.   /\
  836.    /  /__/  /  /  /__/  /  /  /  /__/    Email: tmr@cosine.demon.co.uk   =
  837.  / /
  838.   /  /\_/  /  /__   /  /  /  /  __//          Cosine Homepage:           =
  839. / /
  840.  /  /__/  /  /  /  /  /  /  /  /  /   Moving soon!  New site found...   /=
  841.  /
  842. /_____/_____/_____/__/__/__/_____/_____________________________________/ =
  843. /
  844. \_____\_____\_____\__\__\__\_____\_____________________________________\/
  845. #! rnews 1822
  846. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  847. eed.internetmci.com!info.ucla.edu!unixg.ubc.ca!news.bc.net!arclight.uoreg=
  848. on.edu!dispatch.news.demon.net!demon!mail2news.demon.co.uk!gate.demon.co.=
  849. uk
  850. From: Jason <tmr@cosine.demon.co.uk>
  851. Newsgroups: comp.sys.cbm
  852. Subject: Re: CKIT 94 - Dongle!
  853. Date: Sat, 20 Jul 96 21:42:11 GMT
  854. Organization: Cosine Systems
  855. Lines: 21
  856. Message-ID: <9607202142.AA004qz@cosine.demon.co.uk>
  857. References: <4sgaue$fpf@mksrv1.dseg.ti.com> <4sgmc1$qfs@news2.h1.usa.pipe=
  858. line.com> <Pine.SUN.3.93.960717083908.2896A-100000@apollo.gti.net> <4soqc=
  859. 8$rjj@news-e2c.gnn.com>
  860. X-NNTP-Posting-Host: gate.demon.co.uk
  861. X-Newsreader: TIN [AMIGA 1.3 950726BETA PL0]
  862. X-Mail2News-Path: relay-1.mail.demon.net!gate.demon.co.uk
  863.  
  864. Todd Elliott:
  865. : IMHO, a dongle is not necessary. If Madman Software truly had a geniune
  866. : fear of piracy, they could have burned it onto a ROM cartridge similar
  867. : to Action Replay, but with better file management utilities.
  868.  
  869. Sorry, but its not impossible to hack a cartridge.  All you need is an
  870. Action Replay, a modified motherboard, a C64 you don't mind risking (just
  871. in case something goes wrong) and 6510 knowledge.
  872.  
  873. Personally I just give any game I finish away.  It means I don't have to
  874. worry about protection!  =3D-)
  875.  
  876. Jason  =3D-)
  877.      ____________________________________________________________________=
  878. ___
  879. TMR /     /     /     /  /     /     /                                   =
  880.   /\
  881.    /  /__/  /  /  /__/  /  /  /  /__/    Email: tmr@cosine.demon.co.uk   =
  882.  / /
  883.   /  /\_/  /  /__   /  /  /  /  __//          Cosine Homepage:           =
  884. / /
  885.  /  /__/  /  /  /  /  /  /  /  /  /   Moving soon!  New site found...   /=
  886.  /
  887. /_____/_____/_____/__/__/__/_____/_____________________________________/ =
  888. /
  889. \_____\_____\_____\__\__\__\_____\_____________________________________\/
  890. #! rnews 969
  891. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!newsf=
  892. eed.internetmci.com!news.inc.net!uwm.edu!math.ohio-state.edu!howland.rest=
  893. on.ans.net!Germany.EU.net!wizard.pn.com!news1.channel1.com!usenet
  894. From: "Paul MacArthur" <amazon@user1.channel1.com>
  895. Newsgroups: comp.sys.cbm
  896. Subject: $$$ for your serial cables!
  897. Date: 20 Jul 1996 23:07:49 GMT
  898. Organization: The Mac 5
  899. Lines: 11
  900. Message-ID: <01bb768f$a84dea20$292060cc@amazon.channel1.com>
  901. NNTP-Posting-Host: remote41.channel1.com
  902. X-Newsreader: Microsoft Internet News 4.70.1132
  903.  
  904. I am looking to buy around 20-30 commodore serial cables. The cables shou=
  905. ld
  906. be atleast 3 feet in length and should work! :)
  907.  
  908. Please email me back to discuss a price. If you have a box of cables you
  909. have accumulated over the years that you would like to unload then I am
  910. interested. I will pay all shipping costs!
  911.  
  912. Alternatively I have a number of extra C64 Power Supplies and software th=
  913. at
  914. I would consider for a trade.
  915.  
  916. - Paul
  917. #! rnews 1763
  918. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!news.kei.com!news.=
  919. mathworks.com!news-res.gsl.net!news.gsl.net!swrinde!cssun.mathcs.emory.ed=
  920. u!cc.gatech.edu!prism!acmex!gt7357a
  921. From: gt7357a@acmex.gatech.edu (Tp12a)
  922. Newsgroups: comp.sys.cbm
  923. Subject: Re: ID This Hardware: Hearsay 1000
  924. Date: 20 Jul 1996 23:15:23 GMT
  925. Organization: Georgia Institute of Technology
  926. Lines: 29
  927. Message-ID: <4srpab$duv@catapult.gatech.edu>
  928. References: <4sret6$qa@nadine.teleport.com>
  929. NNTP-Posting-Host: acmex-prism.gatech.edu
  930. X-Newsreader: TIN [version 1.2 PL2]
  931.  
  932. 127 House (house127@teleport.com) wrote:
  933. : What is it?  I bought it at a thrift store.
  934.  
  935. : Black box labeled 'HEARSAY 1000.'  Circuit board fits right in the Comm=
  936. odore=20
  937. : port.  Plug fits right in one of the C64 sockets.  Appears to have a=20
  938. : microphone.  Does nothing when I boot up while plugged in.
  939.  
  940. : What could it be?  What have I got?  What do I need to make it go?
  941.  
  942. : Thanks in advance,
  943. : - Trevor Blkae
  944.  
  945. Hit RESTORE to get a spoken "menu." The Hearsay 1000 is a rather neat
  946. little hardware speech synth/recog box. I believe you can toggle on/off
  947. the text-to-speech mode from the "menu." This only works for OS-"friendly=
  948. "
  949. programs (usually BASIC only). If you stiull have the disk that
  950. accompanies the hardware, you should be able to modify the phenomes a bit
  951. so it actually sounds like a human voice....
  952. Phil
  953.  
  954. :   127 House - An Independent Archive of Systematic Ideology
  955. :   P.O. Box 2321 Portland OR 97208-2321 USA - (503) 635-1796
  956. :   house127@teleport.com - http://www.teleport.com/~house127
  957.  
  958. --
  959. Philip C. Tsao
  960. Georgia Institute of Technology, Atlanta Georgia, 30332
  961. uucp:  ...!{decvax,hplabs,ncar,purdue,rutgers}!gatech!prism!gt7357a
  962. gt7357a@prism.gatech.eduhttp://www.prism.gatech.edu/~gt7357a
  963.