home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / lambda / soundpot / f / fast.lbr / FAST.DZC / FAST.DOC
Encoding:
Text File  |  1993-10-26  |  1.4 KB  |  47 lines

  1. Originated - 7/8/82 by Tom Vyse, San Diego, Calif.
  2.  
  3. The FAST program is specific to the Osborne 1.
  4.  
  5. It also will only work on those Osbornes which have 
  6. MPI disk drives. Those can be identified by a plastic
  7. lever hanging down in the right hand side of the 
  8. disk drive slot. This is part of the door interlock
  9. mechanism. Osbornes are also shipped with other, and
  10. frequently slower, drives from different manufac-
  11. turers.
  12.  
  13. FAST is designed to increase the disk drive step
  14. rate from 20 ms./step (the default) to 6ms./step.
  15. It does this by altering the value in the operating
  16. system parameter table which controls this rate.
  17. The address of this parameter (in both versions
  18. 1.2 and 1.3) is EF13H.  The effect of various
  19. parameters in this location are:
  20.  
  21.             Value   Step Rate
  22.             -----   ---------
  23.  
  24.               0      6 ms. (MPI only)
  25.               1     12 ms.
  26.               2     20 ms. (Seimens)
  27.               3     30 ms. 
  28.  
  29. The code to drive this is simply:
  30.  
  31.       MVI    A,0
  32.       STA    0EF13H
  33.       JMP    0
  34.       END
  35.  
  36. Not much of a program, but it sure makes programs
  37. with a lot of disk access run nicer. Also, the MPI
  38. drive will operate more quietly at the higher step
  39. rate.
  40.  
  41. Fini.
  42. n nicer. Also, the MPI
  43. drive will operate more quietly at the higher step
  44. rate.
  45.  
  46. Fini.
  47.