home *** CD-ROM | disk | FTP | other *** search
- *-------------------------------------------------------------------------*
- * Copylock Amiga - Disk Protection System for the Commodore Amiga *
- * *
- * Documentation for KeyDisk.obj, 2 Mar 1989 *
- * *
- * (C)Copyright 1989 Rob Northen Computing. All Rights Reserved. *
- *-------------------------------------------------------------------------*
-
-
-
- 1. Assemble the file KEYDISK.OBJ into the program code to be protected.
-
- Test for the serial number returned in register d0.l and in the trace
-
- vector, address $24. The test should be made as discretely as possible,
-
- eg. incorporate the serial number into some initialising code,
-
- preferably at a later stage in the program. This should not cause a
-
- complete 'hang up', but a more subtle 'variation' in program operation!
-
- Assemble KEYDISK.OBJ several times into the main code memory permitting,
-
- for added protection.
-
- 2. Copy all files onto the Key Disk, using the normal file copy method.
-
-
- Important:
- ---------
-
- After installing the protection delete the Copylock Files from the Key Disk.
-
-
- The Copylock Amiga Key Disk Format
- ----------------------------------
-
- The Amiga Key Disk has 1749 useable sectors (874.5K), and is compatible
-
- with an AmigaDOS disk. Any of the Key Disk's sectors may be written to or
-
- read from in the usual manner, with the exception of sectors 0-10 on track 0,
-
- side 1. (This track has been allocated in the disk's BITMAP table) Also the
-
- format of all the tracks on the disk must NOT be tampered with in any way.
-
- Any attempt to modify the format will render the disk useless as a Key Disk.
-
-
-
- *-------------------------------------------------------------------------*
-
-
- filename: KEYDISK.OBJ
-
- filetype: relocatable 68000 binary code. It contains no header, relocation
-
- or symbol information.
-
- purpose:
-
- To check for the presence of a Key Disk and return the Key Disk's serial
-
- number. Drives df0: to df3: will be examined for a Key Disk. The file should
-
- be included in the assembly of source code files. Use the directive INCBIN
-
- when assembling with HiSoft's DEVPAC.
-
- Useage:
-
- on entry,
-
- entry possible in Supervisor or User mode.
-
- on exit,
-
- d0.l contains the 32 bit serial number of the Key Disk
-
- trace vector address, $24 contains the Key Disk serial number.
-
- all registers preserved, except d0.l
-
- operating mode preserved
-
- Example
- -------
-
- INCBIN keydisk.obj returns serial no. in d0.l
- move.l d0,serialno .. or 0 if not a Key Disk
- * rest of program
-
- After calling the code, program control continues at the address after the
-
- binary code. An RTS is not performed. The code may be called as often as
-
- required.
-
-