home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 256_01 / getdev.a < prev    next >
Text File  |  1988-01-08  |  2KB  |  53 lines

  1. ;---------------------------------------------------------------------
  2. ;    ASM88 FILE:     GETDEV.A     Get IOCTL Device
  3. ;    ----------
  4. ;    WRITTEN:        25/10/87
  5. ;    -------
  6. ;    PURPOSE:        This is one of a series of files which take
  7. ;    -------         advantage of INT 21H functions under MS-DOS.
  8. ;                    In each case the error situation is marked by
  9. ;                    the carry flag being set.   We use the De Smet
  10. ;                    external variable '_carryf' to see whether the
  11. ;                    carry is set on return from the function.
  12. ;                    If so, the error code can be used to obtain
  13. ;                    information about the specific error.
  14. ;
  15. ;    USAGE:          int GETDEV(handle, device, &_carryf)
  16. ;    -----           int handle, device;
  17. ;                    char *_carryf;
  18. ;
  19. ;    DEPENDENCIES:           De Smet C V 2.44+
  20. ;    ------------
  21. ;    Copyright 1987 - Cogar Computer Services Pty. Ltd
  22. ;---------------------------------------------------------------------
  23.  
  24. CSEG
  25. PUBLIC GETDEV_
  26.  
  27. GETDEV_:
  28.     push    bp    ; normal De Smet C start
  29.     mov    bp,sp    ; point to the stack
  30.     mov    ax,ds    ; and make ES common with DS
  31.     mov    es,ax
  32. ;----------------------------------------------------------------------
  33. ;  The unique programme follows.
  34. ;----------------------------------------------------------------------
  35.     mov    bx,[bp+4]    ; the device handle
  36.     mov    dx,[bp+6]    ; the device data code
  37.     mov    ah,44h    ; the Function No.
  38.     mov    al,0
  39.     int    21h
  40.     jc    GETDEV_ERROR
  41.     mov    ax,dx    ; set up for normal return
  42.     jmp    GETDEV_QUIT
  43. GETDEV_ERROR:
  44.     mov    si,[bp+8]    ; get address of '_carryf' variable
  45.     mov    byte [si],1    ; return with _carryf = 1
  46. ;----------------------------------------------------------------------
  47. ;  Normal programme termination.
  48. ;----------------------------------------------------------------------
  49. GETDEV_QUIT:
  50.     pop    bp    ; restore starting conditions
  51.     ret
  52. ;----------------------------------------------------------------------
  53.