home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / SOFTWARE / LIBS / PMC101.ZIP / LIBSRC.ZIP / DIRCHANG.ASM (.txt) < prev    next >
Assembly Source File  |  1994-06-28  |  358b  |  27 lines

  1. .386p
  2. locals
  3.  
  4. extrn   DOSFUNC:near
  5. public  DIRCHANGE
  6.  
  7. _TEXT           segment byte public use32 'CODE'
  8. assume  cs:_TEXT
  9.  
  10. DIRCHANGE:
  11.         mov eax,[esp+4+0+00h]
  12.         push eax
  13.         push 3b00h
  14.         call DOSFUNC
  15.  
  16.         or eax,eax
  17.         js short @@00
  18.  
  19.         xor eax,eax
  20.  
  21. @@00:
  22.         ret 04h
  23.  
  24. _TEXT           ends
  25. end
  26.  
  27.