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

  1. 12.5.  How do I build a 2400/9600 bps RS-232 interface cable?
  2.  
  3.   A new programming technique makes it possible to acheive 9600 bps on an
  4.   unexpected Commodore 64 without the use of a Swiftlink cartridge. 
  5.   Daniel Dallmann of Germany is the originator of this technique and is
  6.   currently writing modem drivers for some of the popular C64 terminal
  7.   emulation programs to take advantage of this new technique.
  8.  
  9.   The interface described below is a little more complex than the one
  10.   in Section 12.4, but has many advantages:
  11.  
  12.   * The interface generates proper EIA232 (RS-232) voltage levels. 
  13.     The one in Section 12.4 relies on the ability of most newer RS232
  14.     equipment to handle lower voltages.
  15.    
  16.   * The following interface can be used as a direct replacement for the
  17. |   interface in Section 12.4, and will work will all most
  18.     telecommunications programs at up to 2400 bps, while providing the
  19.     necessary interfacing to allow suitably equipped applications to
  20. |   operate at up to 9600 bps.  (Some programs needing DCD and DTR lines
  21. |   may have problems.)
  22.    
  23.   * if you currently own a normal RS232 interface, that interface can be
  24.     modified to incorporate the new interfacing for 9600 bps operation.  =
  25.  
  26.     (in some cases one line of the old interface has to be disconnected,
  27.      see note **1 )
  28.  
  29.   9600 bps is the maximum limit this type of technique due to the timing
  30.   limitations of the C64.  The delay between the activation of the NMI-ha=
  31. ndler
  32.   and the falling edge of rxd is too long.  The handler must be called in=
  33.  
  34.   less than 100 cycles.  That's no problem at 9600 bps, but for 19200 bau=
  35. d
  36.   (the next higher baud rate), you have only 50 cycles, and that's imposs=
  37. oble
  38.   (because of VIC-DMA ).  On a C128 in fast mode 38400 baud may be possib=
  39. le,
  40.   but I don't have a C128, so someone else has to try it out.
  41.  
  42.  
  43.               Schematic of a very simple RS232-Interface:
  44.  
  45.  
  46.     userport                       MAX232         rs232   9pin  25pin
  47.                                 +----------+
  48.                                 !          !
  49.   (C)    pb0--+                 !          !
  50.               !                 !    /!    !
  51.   (B)  flag2--*--------------------O< !---------  rxd     2      3
  52.               !                9!    \!    !8
  53.   *7*    sp2--+                 !          !
  54.                                 !          !
  55.   *6*   cnt2--+                 !          !
  56.               !                 !          !
  57.   *L*    pb7--+ <NOTE **1!>     !          !
  58.                                 !  !\      !
  59.   (M)    pa2--*--------------------! >O---------  txd     3      2
  60.               !               11!  !/      !14
  61.   *5*    sp1--+                 !          !
  62.                   74ls00        !          !
  63.                   +-----+       !          !
  64.                   !     !       !  !\      !
  65.   (D)    pb1-*------>O-------------! >O---------  rts     7      4
  66.              !   1!     !3    10!  !/      !7
  67.              +----!     !       !          !
  68.                  2!     !       !    /!    !
  69.   (K)    pb6--------O<-----*-------O< !---------  cts     8      5
  70.                  6!     !4 !  12!    \!    !13
  71.                   !     !--+    !          !
  72.   (1)    gnd------!     !5      !          !---   gnd     5      7
  73.                  7!     !       !          !15
  74.   (2)    +5V------!     !       !          !     (dsr     6      6)
  75.                 14+-----+       !          !
  76.                                 !          !     (dcd     1      8)
  77.                                 !          !
  78.                                 !          !     (dtr     4     20)
  79.                     c2  ! !+    !          !
  80. | (2)    +5v------------! !-----!          !     (ri      9     22)
  81.                         ! !    2!          !
  82.                                 !          !
  83.                     c4 +! !     !          !
  84.   (1)    gnd------------! !-----!          !
  85.                         ! !    6!          !
  86.                                 !          !
  87.                      c1 ! !+    !          !
  88.                       +-! !-----!          !
  89.                       ! ! !    1!          !
  90.                       !         !          !
  91.                       +---------!          !
  92.                                3!          !
  93.                      c3 ! !+    !          !
  94.                       +-! !-----!          !
  95.                       ! ! !    4!          !
  96.                       !         !          !
  97.                       +---------!          !
  98.                                5!          !
  99.                                 !          !
  100.   (1)    gnd--------------------!          !
  101.                               15!          !
  102.                                 !          !
  103.   (2)    +5V--------------------!          !
  104.                               16+----------+
  105.  
  106.   (x) - connections required for a normal RS232-Interface.
  107.   *x* - additional connections to go up to 9600 baud.
  108.  
  109. | remark: The MAX232 needs 4 capacitors to generate +/- 10 volts to
  110. |         drive the RS-232 unit.  The values are as such:  (in uF)
  111.  
  112. |         IC       C1   C2   C3   C4                       
  113. |         -------  ---  ---  ---  ---
  114. |         MAX232   1.0  1.0  1.0  1.0 
  115. |         MAX232A  0.1  0.1  0.1  0.1 
  116. |         MAX232E  1.0  1.0  1.0  1.0 
  117.                         
  118.   notes :
  119.      **1 Some other interfaces use this pin.  In that case you have to cu=
  120. t
  121.          the connection and change it to new way.  PB7 is normally used t=
  122. o
  123.          receive the DSR (Data Set Ready) signal from the modem, but this=
  124.  
  125.          signal isn't supported by all terminal programs.  Because of the=
  126.  new
  127.          wiring DSR will seem to be active to all 'old' programs, so that=
  128.  
  129.          there won't be any troubles.
  130.  
  131.  
  132.      Top view of the used ICs:
  133.  
  134.           74 LS 00                    MAX232
  135.           +------+                   +------+
  136.      inA -!1 \/14!- vcc       +cap1 -!1 \/16!- Vcc
  137.      inA -!      !-  inC      +cap2 -!      !- GND
  138.     outA -!      !-  inC      -cap1 -!      !- RS232/txd
  139.      inB -!      !- outC      +cap3 -!      !- RS232/cts
  140.      inB -!      !-  inD      -cap3 -!      !- TTL/^cts
  141.     outB -!      !-  inD      -cap4 -!      !- TTL/txd
  142.      gnd -!7    8!- outD  RS232/rts -!      !- TTL/^rts
  143.           +------+        RS232/rxd -!8    9!- TTL/rxd
  144.                                      +------+
  145.           4 X NAND
  146.                                      2 X RS232 transmitter
  147.                                      2 X RS232 receiver
  148.  
  149.         user port (view on C64s backside)
  150.  
  151.        1  2  3  4  5  6  7  8  9 10 11 12   (top)
  152.       ------------------------------------
  153.        A  B  C  D  E  F  H  J  K  L  M  N   (bottom)
  154.  
  155.           1 - GND       A - GND
  156.           2 - +5V       B - ^flag2
  157.           3 - ^reset    C - pb0
  158.           4 - cnt1      D - pb1
  159.           5 - sp1       E - pb2
  160.           6 - cnt2      F - pb3
  161.           7 - sp2       H - pb4
  162.           8 - ^pc2      J - pb5
  163.           9 - atn in    K - pb6
  164.           10- 9V AC     L - pb7
  165.           11- 9V AC     M - pa2
  166.           12- GND       N - GND
  167.  
  168.  
  169.   12.6.  How can I determine how much VDC video memory is in my C128?
  170.  
  171.   Here are two ways to detect whether the C128 VDC chip has 16kB or 64kB
  172.   of RAM.
  173.  
  174.   1 rem fred's nifty program to determine size of 8563 dram
  175.   5 w=3Ddec("cdcc"):r=3Ddec("cdda")
  176.   10 bank15: ad=3Ddec("d600"): da=3Dad+1 :rem setup ml
  177.   20 pokead,28: s=3Dpeek(da): pokeda,63 :rem select 64k
  178.   30 i=3D16896: sysw,i/256,18:sysw,iand255,19:sysw,85,31 :rem write $55
  179.   40 i=3D16896: sysw,i/256,18:sysw,iand255,19:sysr,,31:rregc1 :rem read h=
  180. ere
  181.   50 i=3D17152: sysw,i/256,18:sysw,iand255,19:sysr,,31:rregc2 :rem and he=
  182. re
  183.   60 i=3D16896: sysw,i/256,18:sysw,iand255,19:sysw,170,31 :rem write $aa
  184.   70 i=3D16896: sysw,i/256,18:sysw,iand255,19:sysr,,31:rregc3 :rem read h=
  185. ere
  186.   80 i=3D17152: sysw,i/256,18:sysw,iand255,19:sysr,,31:rregc4 :rem and he=
  187. re
  188.   90 pokead,28: pokeda,s:sysdec("ff62") :rem restore 16/64k
  189.   95 print chr$(14)chr$(147)
  190.   100 if c1=3Dc2 and c3=3Dc4 then print "16K": else print"64K"  :rem did =
  191. it echo?
  192.   110 end
  193.  
  194.   or:
  195.  
  196.   POKE DEC("D600"),28:POKE DEC("D601"),63:SYS DEC("FF62"):SCNCLR
  197.  
  198.   If you have 16k the screen will fill with zeros; 64k will give you a
  199.   ready prompt.
  200.  
  201.  
  202.   12.7.  How can I convert my C64 to run on battery power?
  203.  
  204.   The July, 1990 issue of 73 Amateur Radio has an article on converting
  205.   the C64 and 1541 to run on DC power. I'll summarize the C64 portion:
  206.  
  207.   DC Power Conversion for the C64
  208.  
  209.   1. Locate component CR4 on the circuit board. Mark the positive hole on
  210.      the board. Desolder and remove the component.
  211.     
  212.   2. Rest :-)
  213.  
  214.   3. Connect the marked hole to +12V.
  215.  
  216.   4. Desolder and remove VR1. Looking down at the component side of the
  217.      board, connect a wire from the vacant right hand hole and run it to
  218.      +12V.
  219.  
  220.   5. Locate L5. It will probably be in one of two locations. On the older
  221.      version, desolder the right hand leg and lift. On the newer version,
  222.      desolder the top leg and lift.
  223.  
  224.   6. Connect +5V to the empty L5 hole.
  225.  
  226.   7. Locate the R37 and R100 pads. Use a continuity meter to find the pad=
  227. s
  228.      that are connected. Desolder and lift these legs. You will insert a
  229.      60 Hz clock here.
  230.  
  231.   8. You could generate this clock using a variety of methods. Here's one=
  232. :
  233.                                   +12V
  234.           __________________________|
  235.           |                         |
  236.           | C1    R1          ______|_______
  237.           |-)|-+-/\/\/-+-----|6     8       |
  238.           |    |       \     |              |
  239.           |   XTAL1    / R2  |    MM5369    |
  240.           |    |       \     |              |
  241.           |-)|-+-------+-----|5            1|---> 60 Hz (to R37 pad)
  242.             C2               |      2       |
  243.                               ---------------
  244.                                     |
  245.                                    GND
  246.  
  247.   C1 =3D 30 pF
  248.   C2 =3D 3-15 pF (variable)
  249.   XTAL1 =3D 3.57 MHz crystal
  250.   R1 =3D 1k
  251.   R2 =3D 10M
  252.  
  253.   It is suggested that you use a short length of shielded coax cable to
  254.   connect the 60 Hz output to the R37/R100 pad.
  255.  
  256.   Also, it is suggested that you use a frequency counter to tune the abov=
  257. e
  258.   circuit to exactly 60 Hz.
  259.  
  260.   This conversion would work well if you wanted to use the C64 in a car o=
  261. r powered
  262.   by a solar set-up.
  263.  
  264.  
  265.   12.7.  How do I build a GEOCable interface?
  266.  
  267.   The interface is simply a cable between the printer and the user port. =
  268.  
  269.   The pinout is as follows:
  270.  
  271.   pin on 64        pin on printer
  272.  
  273.   a  Ground        33  Grond
  274.   b  Flag 2        11  Busy
  275.   c  PB0            2  Data 1
  276.   d  PB1            3  Data 2
  277.   e  PB2            4  Data 3
  278.   f  PB3            5  Data 4
  279.   h  PB4            6  Data 5
  280.   j  PB5            7  Data 6
  281.   k  PB6            8  Data 7
  282.   l  PB7            9  Data 8
  283.   m  PA2            1  Strobe
  284.   n  Ground        16  Ground
  285.  
  286.   Superscript uses the same cable, but has the following change:
  287.  
  288.   b  Flag 2        10  Acknowledge
  289.  
  290.   Either wiring will work with either program, but the GEOCable wiring
  291.   is preferred.
  292.  
  293.  
  294. + 12.8.  How do I connect my Commodore printer to an IBM PC?
  295.  
  296. + Look for the plans for the interface at:
  297.  
  298. + http://www.coast.net/simtel/msdos/info/c64topc.zip
  299.  
  300.  
  301. #! rnews 32909
  302. Path: pravda.aa.msen.com!news1.best.com!news.texas.net!newsfeed.concentri=
  303. c.net!news-master!mariner.cris.com!Gaelyne
  304. From: Gaelyne@cris.com (Gaelyne Moranec)
  305. Newsgroups: comp.sys.cbm
  306. Subject: COMP.SYS.CBM: General FAQ, v3.1 Part 8/9
  307. Supersedes: <cbmmainfaq80496@msen.com>
  308. Followup-To: comp.sys.cbm
  309. Date: 5 Jul 1996 06:26:30 GMT
  310. Organization: Brain Innovations, Inc.
  311. Lines: 710
  312. Approved: news-answers-request@MIT.EDU
  313. Message-ID: <cbmmainfaq80596@msen.com>
  314. Reply-To: brain@mail.msen.com
  315. NNTP-Posting-Host: mariner.cris.com
  316. Summary: This posting contains answers to questions that commonly surface=
  317.  in
  318.          comp.sys.cbm.  This posting will tell you enough to get your
  319.          computer connected to a network, fixed, and/or enhanced.  This f=
  320. ile
  321.          should be read by new users of comp.sys.cbm before posting to th=
  322. e
  323.          group.  It should also be proofread by users who are currently
  324.          active in comp.sys.cbm.
  325. Keywords: CBM FAQ Help List C64 C128 VIC Modem
  326. X-Newsreader: TIN [version 1.2 PL2]
  327.  
  328.  
  329. Archive-name: cbm-main-faq.3.1.p8
  330. Comp-answers-archive-name: commodore/main-faq/part8
  331. News-answers-archive-name: commodore/main-faq/part8
  332. Comp-sys-cbm-archive-name: main-faq/part8
  333. Version: 3.1
  334. Last-modified: 1996/05/15
  335.       
  336.  
  337.   -----------------------------------------------------------------------=
  338. ----
  339.  
  340.   Table of Contents (for this file)
  341.   ---------------------------------
  342.  
  343.   13.  Enhancements
  344.   13.1.  How do I increase my disk drive's transfer speed?
  345.   13.1.1.  What is a Fastloader?
  346.   13.1.2.  What is a ROM replacement?
  347.   13.1.3.  What are the disadvantages to using a drive enhancement?
  348.   13.1.4.  What other things can I do to speed up the drive?
  349.   13.2.  How do I expand my disk drive's capacity?
  350.   13.2.1.  What is a Hard Drive?  Who sells them?
  351.   13.2.2.  What is 64NET?
  352. + 13.2.3.  What is SERVER64?
  353.   13.3.  How do I expand my computer's RAM capacity?
  354.   13.3.1.  What is a Ram Expansion Unit?
  355.   13.3.2.  What is a geoRAM Unit?
  356.   13.3.3.  What is battery backed GeoRAM (BBGRam)?
  357.   13.3.4.  What is a RAMLink?
  358.   13.3.5.  What is a RAMDrive?
  359.   13.3.6.  How do I expand my C128 Video RAM?
  360.   13.3.7.  How do I expand my C64 internally?
  361.   13.3.8.  How do I expand my C128 internally?
  362.   13.4.  How do I increase my computer's speed?
  363.   13.4.1.  How do I increase my Commodore 64's speed?
  364.   13.4.2.  How do I increase my Commodore 128's speed?
  365.   13.4.3.  Can I speed up other Commodore computers?
  366.   13.5.  How do I increase my computer screen's resolution?
  367.   13.5.1.  How do I increase my Commodore 64's screen resolution?
  368.   13.5.2.  How do I increase my Commodore 128's screen resolution?
  369.   13.5.3.  How do I increase other CBM computers' resolutions?
  370.   13.6.  How do I increase my computer's serial transfer speed?
  371.   13.7.  How do I increase my computer's sound quality?
  372.   13.8.  What other ways can I expand my Commodore computer?
  373.  
  374.   -----------------------------------------------------------------------=
  375. ----
  376.  
  377.  
  378.   13.  Enhancements
  379.  
  380.   If you like to tinker with your Commodore to get the best possible
  381.   performance out of it, these suggestions and products may help you
  382.   in your quest.
  383.  
  384.   
  385.   13.1.  How do I increase my disk drive's transfer speed?
  386.  
  387.   Since the introduction of the Commodore VIC-20 and the slow serial bus,
  388.   Commodore owners have been plagued by slow disk access.  There are two
  389.   ways to allevaiet this problem, fastloaders and ROM replacements.
  390.  
  391.  
  392.   13.1.1.  What is a Fastloader?
  393.  
  394.   The Commodore 1541 drive and any drive attached to a VIC-20, C64, Plus =
  395. 4,
  396.   C116, or C16 suffer from very slow read and write times.  This is cause=
  397. d
  398.   by Commodore's haste in "economizing" the IEEE-488 bus used in the PET
  399.   series of Commodore computers into the serial bus.  The IEEE-488 bus
  400.   transferred 8 bits of data at a time, and performed some synchronizatio=
  401. n
  402.   steps, or handshaking, between bytes.  Commodore reduced the path to 1 =
  403. bit
  404.   but kept most of the original handshaking, most of which is redundant w=
  405. hen
  406.   transferring 1 bit at a time.  Early on, some developers noted that, si=
  407. nce
  408.   the 1541 drive was intelligent enough to execute a program loaded into =
  409. its
  410.   RAM, and the Commodore operating system calls to do disk I/O could be
  411.   bypassed, they could write software that sped up the loading process by
  412.   modifying or completely changing the protocol used on the serial bus.  =
  413. This
  414.   is the idea behind fastload cartridges like FastLoad, Mach 5, etc...
  415.  
  416.  
  417.   13.1.2.  What is a ROM replacement?
  418.  
  419.   As programs became more complex, some programs would not operate with
  420.   this approach.  Thus, the developers then rewrote parts of the Commodor=
  421. e
  422.   operating system on both the computer and the disk drive, and replaced =
  423. the
  424.   parts of them that did disk I/O with new pieces of code.  This is the i=
  425. dea
  426.   behind JiffyDos and others.
  427.  
  428.   The basic idea in speeding up the disk drive is to use more than 1 line
  429.   to transfer data, effectively doubling the transfer speed.  Then, reduc=
  430. e
  431.   synchronization requirements in the protocol to a bare minimum, as
  432.   synchronizing time is time not being used to do transfers.
  433.  
  434.   The fastload cartridges are handicapped somewhat by the need to transfe=
  435. r
  436.   the portion of the program that runs in the disk drive to the drive usi=
  437. ng
  438.   the slow speed evry time the drive is used.  This can be alleviated
  439.   somewhat, but the replacement operating system replacement products lik=
  440. e
  441.   JiffyDos win the race since they do not need to load code into the driv=
  442. e,
  443.   as it is already there.
  444.  
  445.  
  446.   13.1.3.  What are the disadvantages to using a drive enhancement?
  447.  
  448.   The products are not 100% compatible, as they sacrifice reliability for
  449.   speed somewhat.  That means that a program that does not load due to an
  450.   error while using a fastload product will probably load without the
  451.   fastloading enabled.  Also, some programs can not handle the change in
  452.   loading or reading speed, so these enhancements yield about 90%
  453.   compatibility.
  454.  
  455.  
  456.   13.1.4.  What other things can I do to speed up the drive?
  457.  
  458.   You can also increase the speed of disk drive operation by organizing
  459.   consecutive parts of a file on disk to fall a certain number of disk
  460.   sectors apart.  This is called the interleave or interleaving factor.
  461.   Normally, a 1541 disk drive space consecutive parts of a file 10 sector=
  462. s
  463.   apart, but you can change that a little to minimize the time needed to =
  464. find
  465.   consecutive parts of a file.
  466.  
  467.   Also, the C128 in 128 mode hooked up to a 1571 or 1581 has a built-in
  468.   fastloading scheme called burst loading.  Therefore, if you are in 128 =
  469. mode
  470.   and hooked up to a 1581 or a 1571, you already have this feature.  Howe=
  471. ver,
  472.   the 128 in 64 mode reverts back to the old slow serial routines, and th=
  473. e 128
  474.   in any mode using a 1541 cannot use the burst load routines.
  475.  
  476.  
  477.   13.2.  How do I expand my disk drive's capacity?
  478.  
  479.   Software Support International sells the 1541 RAMBoard, which will incr=
  480. ease
  481.   you 1541's memory.  SSI used to market a similar board for the 1571, bu=
  482. t they
  483.   have depleted stock and no longer carry it.
  484.  
  485.   You can also expand your disk drives on board RAM capacity, and use tha=
  486. t extra
  487.   memory for better archiving performance.
  488.  
  489.  
  490. + 13.2.1.  What is a Hard Drive?  Who sells them?
  491.  
  492. + A hard disk drive is a non-removable ramdom access medium similar that
  493. + allows one to store very large quantities of data.  Hard disk drives
  494. + are mandatory on most newer computer systems, but are usually optional
  495. + for Commodore 8-bit computers.  However, the faster load time, the
  496. + greater capacity, and the ease of use make them desirable.
  497.  
  498.   CMD sells hard drives for the Commodore 64 and 128.  They range in size=
  499. s
  500.   from 50 Megabytes on up.  In comparison, a Commodore 1581 drive holds
  501.   .8 Megabytes.
  502.  
  503.  
  504. + 13.2.2.  What is 64NET?
  505.  
  506.   If you have access to an IBM of some kind (preferrably with a hard driv=
  507. e),
  508.   you can use a product called 64NET to hook the drive up to the Commodor=
  509. e.
  510.   64NET consists of a cable which connects the CBM User Port and the IBM
  511.   Parallel Port together, and a program that runs on both machines.  The
  512.   program on the IBM is a standard application, but the CBM part is a wed=
  513. ge,
  514.   so it should integrate seamlessly with some programs.  There is now jus=
  515. t
  516.   one copy of the product.  Registered users simply receive a 64NET.KEY
  517.   file that enables SAVING.  There is a student discount of AUS$40.00.
  518.  
  519.   The product is at version 1.82.45N BETA and has full OPEN/CLOSE/READ/RE=
  520. ADST
  521.   support, can support 4 gigabyte IBM partitions, and have a built-in
  522.   off-board monitor which includes some dos wedge functions. The
  523.   IBM programs have link-based helpsystems and will run on any IBM
  524.   machine.  The registered version allows saving of files, wheras the PD
  525.   version does not.
  526.  
  527.   The registered BETA version is available (with upgrade to final version
  528.   free) for AUS$50.00, while the unregistered version is free.  These
  529.   prices do not include the cable that is required for operation.  The ca=
  530. ble,
  531.   program, and more information can be received from Paul Gardner-Stephen=
  532.  at
  533.   gardners@ist.flinders.edu.au.  Also, the system can be ordered from:
  534.  
  535.   In Europe:
  536.  
  537.   Performance Peripherals Europe
  538.   Germany
  539.   +49 2227 3221
  540.  
  541.   Michael Renz
  542.   +49 2227 3221
  543.  
  544.   And in Australia from:
  545.  
  546.   Russell Alphey
  547.   +61 3 4278558 (A/H
  548.   r.alphey@dce.vic.gov.au
  549.  
  550.   Paul Gardner-Stephen
  551.   +61 8 277 7479 (A/H)
  552.  
  553.   Versions are available for the C64 and C128, and a C65 version is close=
  554.  to
  555.   completion.
  556.  
  557.  
  558. + 13.2.3.  What is SERVER64?
  559.  
  560.   SERVER64 is a product like 64NET, in that it allows you to use an IBM P=
  561. C
  562.   as a large hard drive.  However, unlike 64NET, SERVER64 does not requir=
  563. e
  564.   a connection to the user port and a special boot program be run.  Inste=
  565. ad,
  566.   the system uses an X1541 cable to attach the Commodore 64 serial port t=
  567. o
  568.   an IBM parallel port. 
  569.  
  570.   The product is available at:
  571.  
  572.   ftp://ccnga.uwaterloo.ca/pub/incoming/SERVER64.ZIP
  573.  
  574.   Documentation is available at:
  575.  
  576.   ftp://ccnga.uwaterloo.ca/pub/incoming/SERVER64.TXT
  577.  
  578.   Both are expected to move to the /pub/cbm/emulation directory soon.
  579.  
  580.  
  581.   13.3.  How do I expand my computer's RAM capacity?
  582.  
  583.   13.3.1.  What is a Ram Expansion Unit?
  584.  
  585.   The original form of RAM expansion available to the C64 and C128 were t=
  586. he
  587.   Commodore REUs (Ram Expansion Units).  These REUs plug into the cartrid=
  588. ge
  589.   port, and provide 128K (the C=3D1700), 256K (the C=3D1764), or 512K (th=
  590. e C=3D1750)
  591.   of additional RAM.
  592.  
  593.   This RAM is not true system RAM however; simply adding a 512K REU to yo=
  594. ur
  595.   system does NOT mean that your word processor will suddenly be able to =
  596. edit
  597.   512K larger documents.  A REU will only be used by a program that was
  598.   written to take advantage of an REU.  As a caveat on this, you can use =
  599. your
  600.   REU as additional RAM for a RAMLink .
  601.  
  602.   An REU can be used as a Commodore Disk Drive by running the program
  603.   RAMDOS.  This will allow users to save and load files from the REU.
  604.  
  605.   If you are using CP/M, the REU can be configured to act like a disk dri=
  606. ve
  607.   under CP/M.
  608.  
  609.   Although the C=3D1764 was originally advertised for the C64, and the 17=
  610. 00 and
  611.   1750 for the C128, any of the three RAM expanders will work with either=
  612.  the
  613.   C64 or the C128.  Note that if you want to use any of them on the C64, =
  614. you
  615.   need a heavy duty power supply.  The 1764 comes with such a power suppl=
  616. y.
  617.  
  618.   There are hardware hacks that will expand a 1700 or a 1764 to 512K;
  619.   additionally, a 512K REU can be expanded to 1 Meg or more.  The plans a=
  620. re
  621.   at ftp://ccnga.uwaterloo.ca/pub/cbm/hardware.  While it appears complet=
  622. ely
  623.   safe to upgrade your REU to 1 Meg, there have been some reports of prob=
  624. lems
  625.   with REU's upgraded to 2 Megs.  Sometimes the REU will work fine for a =
  626. while,
  627.   then fail.  If you are upgrading your REU, it would probably be wise to=
  628.  stop
  629.   at 1 Meg.  If you are still memory hungry, consider a CMD RAMLink.
  630.  
  631.   If you don't wish to do it yourself, there are people who will do it fo=
  632. r
  633.   you, for a fee.  The following individual will do RAM expansions on the=
  634.  
  635.   17xx series. He Has lots of experience doing these modifications. His
  636.   current quoted price for expanding a 1750 from 512k to 1 meg is $60. Ca=
  637. ll
  638.   for the latest prices.  In addition he can do repairs on the RAM.
  639.  
  640.   Raymond Day
  641.   9601 Morton Taylor Road
  642.   Belleville, MI 48111-1328
  643.   r.day@genie.geis.com (Contact)
  644.   (313) 699-6727
  645.  
  646.   On a similar note, Software Support International sells a device called
  647.   the 1750 clone, which functions just like a 1750.  It is not as expanda=
  648. ble
  649.   as the real 1750, but can be used where a 1750 is recommended or requir=
  650. ed.
  651.  
  652.   13.3.2.  What is a geoRAM Unit?
  653.  
  654.   When Commodore REUs became hard to find several years back, Berkeley
  655.   Softworks introduced geoRAM, which is a 512K RAM expander.  This RAM
  656.   expander gives you all of the advantages of a 1750 with GEOS.  However,=
  657.  it is
  658.   not 1750 compatible, so it will not work like a 1750 outside of GEOS; i=
  659. t is
  660.   transparent to other programs.  (As a caveat on this, see the info on
  661.   RAMLink)).  DesTerm128 2.0 will not work with a geoRAM plugged in.  A
  662.   special version of GEOS 2.0 (which is bundled with geoRAM) is necessary=
  663.  to
  664.   use geoRAM.  No additional power supply is necessary to use geoRAM.  Th=
  665. e
  666.   geoRAM can be upgraded to 2MB also.  Contact Jens-Michael Gross at
  667.   grossibr@buran.fb10.tu-berlin.de for information on upgrading the geoRA=
  668. M.
  669.  
  670.   The geoRAM can be used without GEOS if it is installed in a RAMDrive or
  671.   RAMLink.  See Section 13.3.4 for information.
  672.  
  673.   13.3.3.  What is battery backed GeoRAM (BBGRam)?
  674.  
  675.   Battery Backed GeoRam is a products marketed by Performance Peripherals
  676.   Incorporated.  The unit is actually a geoRAM clone, but has battery bac=
  677. kup
  678.   included within the unit.  The unit can be ordered in the following
  679.   configurations:
  680.  
  681.   512kBytes     $92.97US
  682.   1MBytes      $123.97US
  683.   2MBytes      $165.97US
  684.  
  685.   13.3.4.  What is a RAMLink?
  686.  
  687.   RAMLink (RL) is a RAM expansion devices from CMD.  The RAM in these dev=
  688. ices
  689.   can be partitioned into native mode partitions (with dynamically alloca=
  690. ted
  691.   subdirectories), or 1541, 1571, or 1581 emulating partitions.  Thanks t=
  692. o the
  693.   15x1 emulating partitions, software does not have to be specifically wr=
  694. itten
  695.   to run with a RL. The RL devices should appear as a disk drive to most
  696.   programs.  One notable exception is DesTerm v2.00, which does not work
  697.   with the RL.  There are few other exceptions, and no major commercial
  698.   program has a problem running with an RL .  The deciding factor seems t=
  699. o be
  700.   whether or not the program uses a drive's internal ram.  The RL does no=
  701. t
  702.   'mimic' having this type of internal drive ram, and if a program relies=
  703.  
  704.   upon this it will not run.  The heavily copy protected Digital Solution=
  705. s'
  706.   programs use this drive ram for its burst loading routines.  So, even
  707.   though a Maverick/RamBoard combination will write a copy of it to the R=
  708. L,
  709.   it will fail to boot.  However, these programs, once booted from a 1571=
  710. ,
  711.   will use and access all of RL's many functions for lightening fast load=
  712. s
  713.   and saves.
  714.  
  715.   RL has ts own power sources, separate from the computer.  When you turn=
  716.  
  717.   off the computer, the power to the RL is left on, leaving its contents
  718.   intact.  This power supply always remains on.  (For safety from power
  719.   outages, battery backups are also available.)
  720.  
  721.   RAMLink is a powerful, large device.  It can be configured from 0 to
  722.   up to 16 Megs of RAM, using industry standard 1x8 (100ns) 1 Meg and 4 M=
  723. eg
  724.   SIMMs.(1x9, and faster Simms can be used.)  The RL is constructed so th=
  725. at
  726.   the user may easily add additional SIMMs at any time.
  727.  
  728.   RAMLink has a port into which you can plug a Commodore REU or a geoRAM.
  729.   You can configure RAMLink to either leave this RAM device alone, or to =
  730. use
  731.   the REU/geoRAM's RAM just as if it were part of the RAMLink's RAM.  A
  732.   RAMLink also has a pass-through port, in which you can plug a normal
  733.   C64/C128 cartridge, and a parallel port for a CMD hard drive.  The latt=
  734. er
  735.   greatly improves the transfer speed of data between your computer and t=
  736. he
  737.   hard drive.
  738.  
  739.   If you have a geoRAM, the geoRAM can be plugged into the RL .  the
  740.   geoRAM then acts as an extra piece of ram-based disk storage.
  741.  
  742.   The RL comes with a very well documented, thorough, and easily
  743.   referenced User Manual.  Contact CMD for more details.
  744.  
  745.  
  746.  
  747.