home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / genie-commodore-file-library / CompSysCBM / 072096B.TXT / text0000.txt < prev   
Encoding:
Text File  |  2019-04-13  |  33.3 KB  |  945 lines

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