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

  1. /* $VER: PC230 40.2 (3.8.98)
  2.  *
  3.  * 230MB MO file system entry, for AT-HD type MS-DOS disks.
  4.  *
  5.  * This file enables CrossDOSFileSystem on a 230MB MO disk cartridge.
  6.  */
  7.  
  8. /* 230MB MO disks have 446325 512-byte blocks. But 13888*32 = 444416, so not
  9.  * all disk space is used. I assume this is the normal situation for AT-HD type
  10.  * 230MB 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        = 13887
  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 PC230 icon.
  32.  *
  33.  * Device    = scsi.device
  34.  * Unit        = 4
  35.  */
  36.