Leaked source code of windows server 2003
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.

24 lines
371 B

  1. ; fastopen.asm
  2. ;
  3. ; Copyright (c) 1991, Microsoft Corporation
  4. ;
  5. ; History:
  6. ; 13-Apr-1992 Sudeep Bharati (sudeepb)
  7. ; Created.
  8. ;
  9. ; On NT this utility is just a stub which does nothing.
  10. ;
  11. code segment byte public 'CODE'
  12. assume cs:code, ds:code, es:code
  13. org 100h
  14. public start
  15. start:
  16. mov ah,4ch
  17. xor al,al
  18. int 21h
  19. ret
  20. code ends
  21. end start