home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / pcmag / vol8n05.zip / LITES.DOC < prev    next >
Text File  |  1989-02-07  |  2KB  |  60 lines

  1. «RM60»
  2.  
  3. LITES.COM
  4. Command
  5.  
  6. Jeff Prosise            1989 No. 5 (Utilities)
  7.  
  8.  
  9. Purpose:    Replaces an RS-232 breakout box by 
  10. displaying the status of the DTR, DSR, RTS, CTS, DCD, and RI 
  11. pins; also indicates the data rate, parity, number of data 
  12. bits, and number of stop bits of the serial port being 
  13. monitored.    
  14.  
  15. Format:    LITES [comport] [U]
  16.     
  17. Remarks:    LITES is a memory-resident utility and may 
  18. be loaded either at the DOS prompt or as part of an 
  19. AUTOEXEC.BAT file.  If no communications port is specified, 
  20. the default comport monitored is COM1.  After loading, 
  21. alternately pressing Alt-L (the default hotkey) pops up and 
  22. cancels the onscreen display, which is located (by default) 
  23. in the upper right corner of the screen.  LITES can be 
  24. deinstalled by entering it with the optional u (or U) 
  25. parameter, which  simplifies changing the comport to be 
  26. monitored.  (Do not precede the U with a slash.)
  27.  
  28.     The various default options of LITES can be changed 
  29. with DEBUG.COM.  The procedure is explained in the printed 
  30. article, which also contains full tables of scan codes, 
  31. shift masks, colors, and the like.  The available patch 
  32. points, bytes allocated, and default values are listed 
  33. below. 
  34.  
  35.     
  36.  
  37. Function                    Address      Bytes     Default
  38.     
  39. Hotkey ID String             0155h        8         "Alt-L"
  40. Hotkey Scan Code             0160h        1             26h
  41. LITES Video Attribute             0161h        1             70h
  42. LITES Display Row Number     0162h        1             0
  43. LITES Display Column Offset     0163h        1             0
  44. Refresh Frequency Counter     0164h        1             2
  45. Default COM Port Designator     0165h        1             0
  46. Hotkey Shift Mask             01A0h        1             8
  47.  
  48.     Available for downloading from PC MagNet (see the 
  49. LITES by Modem sidebar), LITES.COM is already compiled and 
  50. ready to run.  LITES.BAS will automatically create LITES.COM 
  51. when run once in BASIC.  To create LITES.COM from the 
  52. LITES.ASM source code requires use of a macro assembler (IBM 
  53. or Microsoft, Version 2 or later) and the following 
  54. commands:
  55.  
  56.     MASM LITES;
  57.     LINK LITES;
  58.     EXE2BIN LITES LITES.COM;
  59.     
  60.