home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / SB180 / TDSK201A.LBR / TAPDSK.HZP / TAPDSK.HLP
Text File  |  2000-06-30  |  5KB  |  138 lines

  1. ;
  2.                         -- TAPDSK --
  3.  
  4.                 1 --  Overview of TAPDSK 
  5.  
  6.                 2 --  The opening screen 
  7.  
  8.                 3 --  Configuring TAPDSK 
  9.  
  10.                 4 --  What is TAPAMP     
  11.  
  12.  
  13.  
  14. :1.
  15. Program:   TAPDSK 
  16.  
  17.  
  18.   TAPDSK  will backup hard disk partitions (Drives A thru P) as selected
  19.           from the opening screen menu selection.
  20.  
  21.           TAPDSK will read the BIOS drive table to determine which part-
  22.           itions are available and display then on the menu.
  23.  
  24.           Upon  selection of a drive partition,  the operator may select
  25.           which system tracks to back-up.
  26.  
  27.           TAPDSK will restore each partition from whence it came, A to A
  28.           B to B, etc.
  29.  
  30.           Notice that TAPDSK is an image copying program,  it reads from
  31.           the hard disk sector by sector.  Any bad sectors are copied as
  32.           well and an error message displayed and copying continued.  As
  33.           a result when restoring the partition any bad sectors recorded
  34.           will be restored to the hard disk even if there isn't any.
  35. :2.
  36. AMPRO HARD DISK BACKUP,   TEAC  CT500 - 20Mbyte
  37. Vers: 2.01 12/07/1987
  38. Program by; Barry Harding, Joe Silvia, for AMPRO COMPUTERS INC.
  39.  
  40. Selected drives      for back-up:       v
  41. Hard disks available for back-up:   --> ABCDEFGH
  42. Selected system      for back-up:       ^
  43.  
  44. Date of back-up:   Jan 15, 1988,   at 15:22:15
  45. Comment:
  46. This is a comment of up to 79 characters, and will be recorded on tape.
  47.  
  48.     Rewind on completion: (Yes) 
  49. A - Tape to disk           G - Enter comment  
  50. B - Disk to tape           H - Rewind
  51. C - Directory of tape      I - Prewind tape
  52. D - Select disk dives      J - Erase tape
  53. E - Toggle rewind          K - Display tape status
  54.  
  55. X - Exit to CP/M
  56.  
  57. Cmd -->
  58. :3.
  59.  Configuring TAPDSK 
  60.  
  61.  
  62.   TAPDSK  comes configured for an  AMPRO Computer only.   It makes calls
  63.           to the BIOS  and uses SCSI code generic to the Ampro hardware.
  64.           There are EQUATES in the beginning of the source code to alter
  65.           the following:  
  66.  
  67.  
  68.                     blocks equ  60       ; /2 = Kbytes of buffer
  69.                     clock  equ  true     ; if CTC hdw clock available
  70.                     telvid equ  false    ; Televideo terminal
  71.                     h19    equ  false    ; H/Z19 terminal
  72.                     lfeeds equ  true     ; clear screen with line feeds
  73.                     toggle equ  true     ; true rewind upon completion
  74.  
  75.  blocks equate 
  76.  
  77.           The default size of 60 blocks (30Kbytes) is the buffer size
  78.           in my system, which is an AMPRO with 54K tpa, and 40Mbytes
  79.           of hard disk buffers.  If the tpa is less, this value must be
  80.           adjusted downward.  I found this value by trial and error to
  81.           best operate with my system.  This buffer size resulted in
  82.           a 9 minute per 5Mbytes of transfer time.
  83.  
  84.  clock equate  
  85.  
  86.           If set false an 'F' option on the opening screen menu will be
  87.           visable to allow entry of date and time if no clock is avail-
  88.           able.  The time prompt also allows a 78 character entry.
  89.  
  90.  telvid equate 
  91.  
  92.           If set true, lfeeds must be set false
  93.                        h19    must be set false
  94.              will use the Televideo escape * to clear its screen.
  95.  
  96.  h19 equate    
  97.  
  98.           if set true, lfeeds must be set false
  99.                        telvid must be set false
  100.              will use the H/Z19 escape 'E' to clear its screen, also
  101.              an opening message will be displayed, and will time out
  102.              to the opening screen menu.
  103.  
  104.  toggle equate 
  105.  
  106.          if set true,  will allow usefull information to be returned
  107.             from the TEAC tape unit for a SASI programmer.   Reading
  108.             the manual of the TEAC and understanding the SCSI system
  109.             will provide the information to  understand this option.
  110.             The option is really a carry over from the development &
  111.             debugging of the program TAPDSK with TAPAMP.
  112.  
  113.  
  114.  
  115.  NOTE:        
  116.  
  117.           TAPDSK may be assembled with ZAS and linked with ZLINK.
  118.                  NOT compatable at this time with SLRnnn.
  119.  
  120.           TAPAMP may be assembled with M80 and linked with L80.
  121.  
  122.           The tape scsi id in the program is 6, where the HD is 7.
  123. :4
  124. Program:   TAPAMP 
  125.  
  126.   TAPAMP  This program is a diagnostic for and was used for evaluating
  127.           the TEAC tape unit.  To use this program requires you to
  128.           understand SCSI commands to the TEAC and what the returned
  129.           error codes and/or status condition of the TEAC tape unit.
  130.           I (Joe Silvia), don't understand this program, I'm not the
  131.           author per se.   A Barry Harding developed the software as a
  132.           result of implementing the TEAC tape on his UNIX system, where
  133.           it's in continous use.
  134.  
  135.           When assembling TAPAMP there is an INCLUDE SCSI.MAC in the
  136.           file making it necessary for the assembler/linker to be able
  137.           to locate it.
  138.