home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Games / WHDLoad / Extra / wwarp.lha / wwarp / ReadMe.txt < prev    next >
Text File  |  2000-06-29  |  3KB  |  101 lines

  1.  
  2. Usage
  3. -----
  4.  
  5. Synopsis:
  6.  
  7.     WWarp filename[.wwp] [command] [tracks] [args] [options...]
  8.  
  9. commands:
  10.  
  11.  SOME COMMANDS ARE CURRENTLY NOT IMPLEMETED OR INCOMPLETE, Sorry!
  12.  
  13.     C - create wwarp file (default)
  14.         this will read the disk in the floppy drive and create a image 
  15.         from, if [tracks] has been specified only these tracks will be 
  16.         read
  17.     
  18.     D - dump tracks
  19.         displays info about the specified track and displays the mfm-data
  20.         (or decoded data if type is not 'raw'), if there is a sync set in
  21.         the wwarp file the mfm-data will be displayed shifted to the first
  22.         sync
  23.         args = [sync[&mask]][,[syncno][,[len][,off]]]
  24.             sync[&mask] - the track will be shiftet to that sync and then
  25.                 displayed
  26.             syncno - if multiple syncs are found, the number of the sync
  27.                 to use for display (first sync is 1)
  28.             len - amount of bytes to display
  29.             off - offset to start display, can be negative e.g. to view
  30.                 bytes before the sync
  31.             leadings args can be ommited, e.g. use ,,16 to see first the
  32.             16 bytes
  33.  
  34.     F - try to decode the specified [tracks] as standard format (much less
  35.         restrictive than the routine used in command C)
  36.     
  37.     I - print informations about wwarp file and tracks contained
  38.     
  39.     L - set track length
  40.         sets the data length which should be written back to disk. this 
  41.         length is stored in the wwarp file and will be used on command 'W'
  42.         (see below), this operation does not modify the stored track data
  43.         in the wwarp file, this command doesn't work with tracks which are
  44.         not of type 'raw' of course
  45.     
  46.     M - merge two wwarp files together
  47.     
  48.     P - pack wwarp file
  49.         this removes all unneccessary data from the wwarp file, all tracks
  50.         of type 'raw' and a valid 'Length' and 'Sync' will be stored
  51.         starting with 'Sync' and the length 'Length', removed data is lost
  52.         forever, so be careful
  53.  
  54.     R - remove tracks from wwarp file
  55.         deletes the specified [tracks] from the wwarp file, the tracks are
  56.         lost forever, so be careful
  57.  
  58.     S - save tracks
  59.     
  60.     W - write wwarp file to disk
  61.  
  62.     Y - set sync
  63.         sets the syncronization word to write the track with wordsync back
  64.         to a floppy disk, the sync consists of 16 byte data and 16 byte 
  65.         mask. both, data and mask must be given as hexadecimal in the form
  66.         "data&mask", mask can be omitted and will then be calculated from
  67.         the data value
  68.  
  69. tracks:
  70.     will be used to specify which tracks should be affected by the command
  71.      1-5        tracks 1,2,3,4,5
  72.      2,90        tracks 2 and 90
  73.      2*2        tracks 2,4,...,156,158
  74.      10-20*5    tracks 10,15,20
  75.      1-5,7,99-104*2 tracks 1,2,3,4,5,7,99,101,103
  76.      *         all tracks
  77.  
  78. options:
  79.  
  80.     BPT=BytesPerTrack/K - amount of bytes to rawread and write to the
  81.         wwarp file if nothing will be detected, default $6c00
  82.  
  83.     Unit/N/K - trackdisk.device unit number, 1 for DF1: etc.
  84.  
  85.     NoStd/S - dont try to detect any known formats
  86.  
  87.     RetryCnt/N/K - number of read retries before a track is stored as
  88.         'nonsingle' 'raw'
  89.     
  90.  
  91. Tips & Tricks
  92. -------------
  93.  
  94. * to check if right sync has been set use:
  95.     wwarp abc.wwp d 2-159 ,,32
  96.   which will display the first 32 mfm bytes of the selected tracks
  97.  
  98.  
  99. MORE QUESTIONS? so check the source ;-)
  100.  
  101.