home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pcmagazi / 1989 / 06 / mono.doc < prev    next >
Text File  |  1989-02-16  |  2KB  |  44 lines

  1. MONO.COM
  2. Command
  3.  
  4. Michael J. Mefford
  5. 1989 No. 6 (Utilities)
  6.  
  7.  
  8. Purpose:    Makes the display of color applications legible on laptop
  9. computers and other monochrome screens that have limited intensity range
  10. capabilities by translating the color attributes into black-and-white.
  11.  
  12. Format:    MONO [U]
  13.     
  14. Remarks:    MONO is a memory-resident utility that is normally loaded as
  15. part of an AUTOEXEC.BAT file.  If no other TSR programs are installed after it,
  16. MONO can be deinstalled by re-entering the command with the U parameter added.
  17.  
  18.     Once installed, MONO automatically converts color attributes into black-
  19. and-white, updating the screen approximately five times each second.  Since a
  20. typical 80 x 25 display contains 2,000 attribute bytes, some loss in speed must
  21. be anticipated, though the amount of degradation will vary with the type and
  22. clock speed of the system microprocessor.  For applications that do not require
  23. MONO, its active state can be toggled off and on by alternately pressing Alt-M,
  24. the default hotkey.
  25.  
  26.     Instructions for changing the default hotkey and the screen update
  27. frequency, as well as for reversing the algorothm (should the entire screen
  28. appear in reverse video after color translation) and eliminating "snow" produced
  29. by CGA adaptors, are contained in a sidebar to the published article.
  30.  
  31. Note:    MONO is not intended to work with graphics programs.
  32.  
  33.     Available for downloading from PC MagNet (see the MONO by Modem sidebar
  34. in the article), MONO.COM is already compiled and ready to run.  As an
  35. alternative, MONO.COM can be created from either of two program files that are
  36. both printed in the article and are available for downloading from PC MagNet. 
  37. MONO.BAS will automatically create MONO.COM when run once in BASIC.  To create
  38. MONO.COM from the MONO.ASM source code requires use of a macro assembler (IBM or
  39. Microsoft, Version 2 or later) and the following commands:
  40.  
  41.     MASM MONO;
  42.     LINK MONO;
  43.     EXE2BIN MONO MONO.COM;
  44.