home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / dos_util / v12n19.zip / DRVASM.ZIP / DRVEQU.INC < prev    next >
Text File  |  1993-10-11  |  2KB  |  37 lines

  1. ;---------------------------------------------------------------    
  2. ;drvequ.inc - equates for DRVLOAD Utility                      |
  3. ;--------------------------------------------------------------|
  4. ;DRVLOAD Copyright (c) 1993                                    |
  5. ;                                                              |
  6. ;Rick Knoblaugh All rights reserved.                           |
  7. ;First Appeared in PC MAGAZINE, US Edition,                    |
  8. ;November 9, 1993                                              |
  9. ;--------------------------------------------------------------|
  10. ; 7/04/93                      Rick Knoblaugh                  |
  11. ;--------------------------------------------------------------|
  12. ;
  13. TRUE            equ     1
  14. FALSE           equ     0         
  15. DRV_STACK_SIZE  equ     128             ;stack size in words
  16. DOS_PRT_STRING  equ     9               
  17. DOS_TERM        equ     4ch             ;terminate program with error level
  18. DOS_FIND_FIRST  equ     4eh             
  19. DOS_GET_VER     equ     30h
  20. DOS_RELEASE_MEM equ     49h
  21. DOS_CLOSE_FILE  equ     3eh
  22. DOS_OPEN_FILE   equ     3dh
  23. DOS_TSR_FUNC    equ     31h
  24. DOS_LIST_LISTS  equ     52h             ;undocumented call to get "list of lists"
  25. DOS_XLAT_BPB    equ     53h             ;undocumented call to XLAT BPB to DPB
  26. DOS_LOAD_OVER   equ     4b03h
  27. CR              equ     13
  28. LF              equ     10
  29. BEEP            equ     7
  30. TAB             equ     9
  31. MAX_CMD_LINE    equ     128             ;maximum command line size
  32. MAX_PATHLEN     equ     67              ;maximum path length
  33. MAX_NAMELEN     equ     12
  34. STR_TERM        equ     0  
  35. DOS_STR_TERM    equ     '$'
  36. INIT_CMD        equ     0               ;driver INIT command code
  37.