home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 14 / CDACTUAL.iso / cdactual / demobin / share / program / asm / SCSIDRV.ZIP / OPTIONS.INC < prev    next >
Encoding:
Text File  |  1991-11-06  |  1.4 KB  |  67 lines

  1. ;
  2. ; Partition drives into single large partitions
  3. ;
  4. ; This is allowed if you are using DOS 4.0 or greater.
  5. ; Instead of breaking the drive up into 32Meg chunks,
  6. ; the entire drive will be allocated as one chunk.
  7. ;
  8. large_drives    =    1
  9.  
  10. ;
  11. ; Allow multi_sector reads and writes.
  12. ;
  13. ; This means that a read request of less then CHUNK_MAX
  14. ; sectors will be done in one request to the drive rather
  15. ; then multiple single sector requests.
  16. ;
  17. multi_sector    =    1
  18.  
  19. ;
  20. ; Use the extended SCSI commands for reads and writes.
  21. ;
  22. ; This means that we can access drives larger then 1Gb
  23. ; and read/write more then 256 sectors per command.
  24. ;
  25. ; The disadvantage here is that not all devices support
  26. ; the extended command set.
  27. ;
  28. extended_io    =    0
  29.  
  30. ;
  31. ; Use parity on the SCSI bus
  32. ;
  33. scsi_parity    =    0
  34.  
  35. ;
  36. ; Reserve SCSI Address 7 for card
  37. ; This also means use Arbitration for getting control of the BUS
  38. ;
  39. reserve_addr    =    0
  40.  
  41. ;
  42. ; Dump Sense information to the screen
  43. ;
  44. dump_sense    =    1
  45.  
  46. ;
  47. ; Include the code to kludge the RAW ioctl call after an open
  48. ;
  49. use_kludge    =    1
  50.  
  51. ;
  52. ; Only Inquire for enough data to determine device type.
  53. ; This allows for older devices that violate the SCSI
  54. ; spec in that they don't return the normal inquire structure.
  55. ;
  56. mini_inquire    =    0
  57.  
  58. ;
  59. ; Include code to display the SCSI bus phase on the screen
  60. ;
  61. monitor        =    0
  62.  
  63. ;
  64. ; Now select wether we want 8088 compatability or 80286+ code
  65. ;
  66. oldcode        =    0
  67.