home *** CD-ROM | disk | FTP | other *** search
/ MACD 9 / MACD9.iso / Docs / Amiga_MO_FAQ / DOSDrivers / PC128 < prev    next >
Encoding:
Text File  |  1998-08-03  |  950 b   |  36 lines

  1. /* $VER: PC128 40.1 (3.8.98)
  2.  *
  3.  * 128MB MO file system entry, for AT-HD type MS-DOS disks.
  4.  *
  5.  * This file enables CrossDOSFileSystem on a 128MB MO disk cartridge.
  6.  */
  7.  
  8. /* 128MB MO disks have 248826 512-byte blocks. But 7776*32 = 248832, which is
  9.  * greater than 248826. Is this correct? I assume this is the normal situation
  10.  * for AT-HD type 128MB MO disks. */
  11.  
  12. FileSystem    = L:CrossDOSFileSystem
  13. Flags        = 0
  14. Surfaces    = 1
  15. BlocksPerTrack    = 32
  16. SectorsPerBlock    = 1
  17. SectorSize    = 512
  18. Mask        = 0x7FFFFFFE    /* Change to suit your system and SCSI controller */
  19. MaxTransfer    = 0xFFFFFFFE    /* Change to suit your system and SCSI controller */
  20. Reserved    = 2
  21. Interleave    = 0
  22. LowCyl        = 1
  23. HighCyl        = 7775
  24. Buffers        = 128        /* Number of 512-byte filesystem buffers */
  25. BufMemType    = 1
  26. DosType        = 0x4D534400
  27. StackSize    = 4000
  28. Priority    = 10
  29. GlobVec        = -1
  30.  
  31. /* The Device and Unit fields are controlled by tooltypes in the MO540 icon.
  32.  *
  33.  * Device    = scsi.device
  34.  * Unit        = 4
  35.  */
  36.