DRIVER.EQU
上传用户:xiaogehua
上传日期:2007-01-08
资源大小:1183k
文件大小:3k
源码类别:

操作系统开发

开发平台:

Asm

  1. ;    File              : $DRIVER.EQU$
  2. ;
  3. ;    Description       :
  4. ;
  5. ;    Original Author   : DIGITAL RESEARCH
  6. ;
  7. ;    Last Edited By    : $CALDERA$
  8. ;
  9. ;-----------------------------------------------------------------------;
  10. ;    Copyright Work of Caldera, Inc. All Rights Reserved.
  11. ;      
  12. ;    THIS WORK IS A COPYRIGHT WORK AND CONTAINS CONFIDENTIAL,
  13. ;    PROPRIETARY AND TRADE SECRET INFORMATION OF CALDERA, INC.
  14. ;    ACCESS TO THIS WORK IS RESTRICTED TO (I) CALDERA, INC. EMPLOYEES
  15. ;    WHO HAVE A NEED TO KNOW TO PERFORM TASKS WITHIN THE SCOPE OF
  16. ;    THEIR ASSIGNMENTS AND (II) ENTITIES OTHER THAN CALDERA, INC. WHO
  17. ;    HAVE ACCEPTED THE CALDERA OPENDOS SOURCE LICENSE OR OTHER CALDERA LICENSE
  18. ;    AGREEMENTS. EXCEPT UNDER THE EXPRESS TERMS OF THE CALDERA LICENSE
  19. ;    AGREEMENT NO PART OF THIS WORK MAY BE USED, PRACTICED, PERFORMED,
  20. ;    COPIED, DISTRIBUTED, REVISED, MODIFIED, TRANSLATED, ABRIDGED,
  21. ;    CONDENSED, EXPANDED, COLLECTED, COMPILED, LINKED, RECAST,
  22. ;    TRANSFORMED OR ADAPTED WITHOUT THE PRIOR WRITTEN CONSENT OF
  23. ;    CALDERA, INC. ANY USE OR EXPLOITATION OF THIS WORK WITHOUT
  24. ;    AUTHORIZATION COULD SUBJECT THE PERPETRATOR TO CRIMINAL AND
  25. ;    CIVIL LIABILITY.
  26. ;-----------------------------------------------------------------------;
  27. ;
  28. ;    *** Current Edit History ***
  29. ;    *** End of Current Edit History ***
  30. ;
  31. ;    $Log$
  32. ;
  33. ;    ENDLOG
  34. ; Device driver header offsets.
  35. DH_NEXT equ es:dword ptr 0 ; Dword Pointer to Next DEV
  36. DH_NEXTOFF equ es:word ptr 0 ; Offset of next device
  37. DH_NEXTSEG equ es:word ptr 2 ; Segment of next device
  38. DH_ATTRIB equ es:word ptr 4 ; device attribute bits
  39. DH_STRATEGY equ es:word ptr 6 ; offset of strategy entry
  40. DH_INTERRUPT equ es:word ptr 8 ; offset of interupt entry
  41. DH_NAME equ es:byte ptr 10 ; 8-BYTE device name
  42. DA_CHARDEV equ 8000h ; 1=character device, 0=block device
  43. DA_IOCTL equ 4000h ; device supports IOCTL string I/O
  44. DA_NONIBM equ 2000h ; dosen't require FAT for login
  45. DA_OTILBSY equ 2000h ; supports "output until busy"
  46. DA_REMOVE equ 0800h ; supports "removable media" check
  47. DA_QUERY equ 0080h ; supports query ioctl
  48. DA_GETSET equ 0040h ; supports 3.2 level functionality
  49. DA_SPECIAL equ 0010h ; fast console ouput via INT 29h
  50. DA_ISCLK equ 0008h ; device is current clock device
  51. DA_ISNUL equ 0004h ; device is NUL device (reserved)
  52. DA_BIGDRV equ 0002h ; supports > 65535 sector per drive
  53. DA_ISCOT equ 0002h ; device is standard output device
  54. DA_ISCIN equ 0001h ; device is standard input device
  55. FASTCON_INT equ 29h ; fast console output interrupt