home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / amiga / misc / 16422 < prev    next >
Encoding:
Text File  |  1992-11-07  |  2.6 KB  |  76 lines

  1. Newsgroups: comp.sys.amiga.misc
  2. Path: sparky!uunet!lysator.liu.se!manne
  3. From: manne@lysator.liu.se (Manne Landeholm)
  4. Subject: Re: C-64 to Amiga data transfer
  5. Message-ID: <1932@lysator.liu.se>
  6. Sender: news@lysator.liu.se
  7. Nntp-Posting-Host: robert.lysator.liu.se
  8. Organization: Lysator Academic Computer Society, Linkoping University, Sweden
  9. References: <1992Nov2.134854.24417@nntp.nta.no>
  10. Date: Fri, 6 Nov 1992 15:01:00 GMT
  11. Lines: 63
  12.  
  13. jons@tellus.unik.no (Jon von Tetzchner Stephenson ) writes:
  14.  
  15. >A friend of mine has a lot of data on C-64 cassettes. He would like to
  16. >get the data to the Amiga. We have got a serial lead from the C-64
  17. >user port to the serial port of the Amiga, but we do not know how to
  18. >transfer the data. Checking the C-64 books did not help much.
  19.  
  20. >Has anybody done this? I would think that only a simple program on each
  21. >side is needed. Has anybody written such code? Care to share it?
  22.  
  23. >Thanks!
  24.  
  25. >Jon.
  26.  
  27. >-- 
  28. >********************************
  29. >* Jon v. Tetzchner Stephenson. *
  30. >*     jonst@ifi.uio.no       *
  31. >*       jons@hal.nta.no        *
  32. >*       jons@gauda.unik.no     *
  33. >********************************
  34.  
  35. Hello!
  36.  
  37. I have written a prg for the Amiga and the C64 for PARALLEL communication.
  38. It uses the 8 bits PB0-7 on the Amiga (the ones connected to the parallel-port)
  39. and the 8 data-bits of the USER PORT. A cable must connect the PB0-bit of the 
  40. AMIGA parallel-port to the bit 0 of the C64 USER PORT and so on.
  41.  
  42. PB0 PB1 PB2 PB3 PB4 PB5 PB6 PB7 -Amiga parallel-port  
  43.  .   .   .   .   .   .   .   . 
  44.  |   |   |   |   |   |   |   |  -My cable
  45.  .   .   .   .   .   .   .   .
  46. D0  D1  D2  D3  D4  D5  D6  D7  -C64 parallel-port
  47.  
  48. The Amiga-program (called FT), should be run as a backgnd task.
  49. Start the C64 program, choose source-computer (computer to transfer FROM),
  50. enter the source-filename (the C64 will look for this file on unit 8, but
  51. the Amiga can be given a full path, such as df1:fromC64/data/this_file).
  52. Then just enter the destination file, and the transfer will start.
  53.  
  54. Ex:
  55.  
  56. Choose source-computer (A)miga or (C)64: C
  57.  
  58. Source-file: Data (This file must be located on the diskdrive unit 8)
  59. Destination: df1:data
  60.  
  61. Transferring...
  62.  
  63. Operation succesful.
  64.  
  65. The Amiga-program FT will recieve the file 'Data' and save it as 'df1:data'.
  66. The C64 program will tell you if the transfer was succesful. (I have never
  67. discovered an unsuccesful transfer so far).
  68.  
  69. !You have to find out which pins are PB0-7 and which are D0-D7 on the ports.
  70. I don't remember that right now...
  71. !The Amiga-program is accesing the hardware directically. Be sure no printers
  72. or other parallel equipment is attached before you start the program.
  73.  
  74. The only problem is the cable. You have to make one for yourself.
  75.  
  76.