home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 10: Diskmags / nf_archive_10.iso / MAGS / ST_USER / 1989 / USER1089.MSA / VERIFY.S < prev    next >
Text File  |  1985-11-19  |  462b  |  18 lines

  1. *    Speed up floppy disc accesses by switching off the
  2. *    write verify option and setting a fast seek rate
  3. *    By R.A.Waddilove
  4.  
  5.     PEA subr        stack address of subroutine
  6.     MOVE.W #$26,-(SP)    stack XBIOS SUPERX function number
  7.     TRAP #14        call subr in supervisor mode
  8.     ADD.L #2,A7        restore stack
  9.     MOVE.W #0,-(A7)        return to DESKTOP
  10.     TRAP #1
  11.  
  12.  
  13. *     Entered in supervisor mode
  14. subr:
  15.     MOVE.W #0,($444)    write verify flag=off
  16.     MOVE.W #2,($440)    seek rate=2ms
  17.     RTS
  18.