home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / utils / sysutl / sstat18x.lbr / SS-OVR14.AQM / SS-OVR14.ASM
Assembly Source File  |  1986-04-08  |  2KB  |  62 lines

  1. ;--------------------------------------------------------------------------
  2. ; SS-OVR.ASM
  3. ;
  4. ; Overlay file for SuperSTAT program.
  5. ;
  6. ; Copyright (C) by David Jewett, III, 1986.  All rights reserved. You shall
  7. ; not use this program for commercial purposes or for monetary gain without
  8. ; first obtaining written permission from the author.
  9. ;
  10. ; Change this file to suit yourself, assemble, and overlay SSTAT.COM with
  11. ; SS-OVR.HEX using DDT.COM or MLOAD.COM.  You MUST NOT change the SIZE
  12. ; of anything in this file.
  13. ;
  14. ; version 1.0 - 1/25/86
  15. ;
  16. ; -------------------------------------------------------------------------
  17. ; Revisions in reverse order:
  18. ;
  19. ; v1.4 02/17/86 Eliminated some unnecessary equates - D. Jewett, III
  20. ;
  21. ; v1.3 02/07/86 Added YES/NO definition - Harry Kaemmerer
  22. ;
  23. ; v1.2 02/05/86 Added auto advance flag - D. Jewett, III
  24. ;
  25. ; v1.1 01/25/86 Eliminated command table from overlay file.
  26. ;        - Harry Kaemmerer
  27. ;
  28. ; -------------------------------------------------------------------------
  29. ;
  30. ; EQUATES
  31. ;
  32. YES    EQU    0FFH
  33. NO    EQU    0
  34. ;
  35. ; ASCII values
  36. ;
  37. ESC    EQU    27        ;escape
  38. SPACE    EQU    ' '        ;blank
  39. ;
  40. ;==========================================================================
  41. ;
  42.     ORG    100H        ;code starts at transient program area.
  43.     DS    3        ;space for jump to real start of program
  44. ;
  45. ;==========================================================================
  46. ; User customizable data
  47. ;
  48. ; Patch here for your terminal.
  49. ; Current patch is for a TeleVideo 910/920 terminal.
  50. ;
  51. ATTON:    DB    ESC,')',ESC,'7'    ;string to turn video attribute ON
  52.     DB    0        ;string terminator
  53. ATTOFF:    DB    ESC,'(',0,0    ;string to turn video attribute OFF
  54.     DB    0        ;string terminator
  55. ;
  56. MAXDRV:    DB    'P'        ;max. accessible drive (CHARACTER)
  57. MAXUSR:    DB    15        ;max. accessible user (0..15 only)
  58. MAXNARG:DW    512        ;max. no. of directory entries
  59. ADVANC:    DB    YES        ;yes = do auto advance, no = do not
  60. ;
  61.     END            ;end of overlay file
  62.