Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
297 B

  1. DOSSEG
  2. .MODEL LARGE
  3. .CODE
  4. .286
  5. public _FlushDisks
  6. _FlushDisks proc far
  7. push ds
  8. push es
  9. pusha
  10. mov ah,0dh
  11. int 21h
  12. popa
  13. pop es
  14. pop ds
  15. retf
  16. _FlushDisks endp
  17. end