home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / CopyPRGS / CLAKDisk.lha / keydisk.inf < prev    next >
Encoding:
Text File  |  1980-01-16  |  2.8 KB  |  101 lines

  1. *-------------------------------------------------------------------------*
  2. *     Copylock Amiga - Disk Protection System for the Commodore Amiga     * 
  3. *                                                                         *
  4. *            Documentation for KeyDisk.obj, 2 Mar 1989                    *
  5. *                                                                         *
  6. *       (C)Copyright 1989 Rob Northen Computing. All Rights Reserved.     *  
  7. *-------------------------------------------------------------------------*
  8.  
  9.  
  10.  
  11. 1. Assemble the file KEYDISK.OBJ into the program code to be protected.
  12.  
  13.    Test for the serial number returned in register d0.l and in the trace
  14.  
  15.    vector, address $24. The test should be made as discretely as possible,
  16.  
  17.    eg. incorporate the serial number into some initialising code,
  18.  
  19.    preferably at a later stage in the program. This should not cause a
  20.  
  21.    complete 'hang up', but a more subtle 'variation' in program operation!
  22.  
  23.    Assemble KEYDISK.OBJ several times into the main code memory permitting,
  24.  
  25.    for added protection.
  26.  
  27. 2. Copy all files onto the Key Disk, using the normal file copy method.
  28.  
  29.  
  30. Important:
  31. ---------
  32.  
  33. After installing the protection delete the Copylock Files from the Key Disk. 
  34.  
  35.  
  36. The Copylock Amiga Key Disk Format
  37. ----------------------------------
  38.  
  39. The Amiga Key Disk has 1749 useable sectors (874.5K), and is compatible
  40.  
  41. with an AmigaDOS disk. Any of the Key Disk's sectors may be written to or
  42.  
  43. read from in the usual manner, with the exception of sectors 0-10 on track 0,
  44.  
  45. side 1. (This track has been allocated in the disk's BITMAP table) Also the
  46.  
  47. format of all the tracks on the disk must NOT be tampered with in any way.
  48.  
  49. Any attempt to modify the format will render the disk useless as a Key Disk.
  50.  
  51.  
  52.  
  53. *-------------------------------------------------------------------------*
  54.  
  55.  
  56. filename: KEYDISK.OBJ
  57.  
  58. filetype: relocatable 68000 binary code. It contains no header, relocation
  59.  
  60.           or symbol information.
  61.  
  62. purpose:
  63.  
  64. To check for the presence of a Key Disk and return the Key Disk's serial
  65.  
  66. number. Drives df0: to df3: will be examined for a Key Disk. The file should
  67.  
  68. be included in the assembly of source code files. Use the directive INCBIN
  69.  
  70. when assembling with HiSoft's DEVPAC.
  71.  
  72. Useage:
  73.  
  74. on entry,
  75.  
  76.     entry possible in Supervisor or User mode.
  77.  
  78. on exit,
  79.  
  80.         d0.l contains the 32 bit serial number of the Key Disk
  81.  
  82.     trace vector address, $24 contains the Key Disk serial number.
  83.  
  84.         all registers preserved, except d0.l
  85.  
  86.     operating mode preserved
  87.  
  88. Example
  89. -------
  90.  
  91.     INCBIN    keydisk.obj        returns serial no. in d0.l
  92.     move.l    d0,serialno        .. or 0 if not a Key Disk
  93. * rest of program
  94.  
  95. After calling the code, program control continues at the address after the
  96.  
  97. binary code. An RTS is not performed. The code may be called as often as
  98.  
  99. required.
  100.  
  101.