home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / BEEHIVE / TESERACT / TESS-025.ZIP / K.DOC < prev    next >
Text File  |  1989-01-22  |  4KB  |  79 lines

  1.  
  2.   CONTROL ( K.COM ) utility to set display mode on IBM Personal Computer
  3.  
  4.   The CONTROL command is designed to function similar to the CONTROL
  5.   command used on large IBM mainframe computers running the MVS
  6.   operating system. The MVS CONTROL command has a short form of K and
  7.   is used to control the screen of the operators consoles. When the K
  8.   command is issued without any operands it will erase the screen.
  9.   There are many parameters for the MVS K command to perform console
  10.   tailoring functions and to control the many consoles often
  11.   connected to a large MVS system.
  12.  
  13.   While the PC version of CONTROL does not have nearly the number of
  14.   options as the MVS version, it is only fitting that those functions
  15.   that are similar all be contained in K.COM. When I want to clear
  16.   the operators console under MVS, I enter K and press enter. Habits
  17.   are hard to break so when I, out of habit, enter K and press enter
  18.   on the PC I want the screen to be erased.
  19.  
  20.   I use a 160K ram drive on my PC and I keep all of the most
  21.   frequently used commands on this small but super fast drive. PC-DOS
  22.   allocates space on a 160K drive in 512 byte sectors, so the minimum
  23.   amount of space used for any file is one 512 byte sector. If I used
  24.   a separate command file for each console function I need to
  25.   perform, I would use up several K of valuable ram drive space. By
  26.   combining all of the CLS, TOCOLOR, TOMONO etc. functions into a
  27.   single command, I not only save RAM space but I also improve
  28.   useability.
  29.  
  30.   Most of the assembler code for CONTROL was taken from the VMODE
  31.   command which appeared in the July 1983, SOFTALK, "The Right To
  32.   Assemble" by Ray Duncan. I changed VMODE.ASM to include the
  33.   clear screen and monitor switch functions, and renamed it K.COM.
  34.  
  35.  
  36.   Timothy M. Hanes
  37.   ASYST Inc.
  38.   19414 Craigchester Ln.
  39.   Spring,  Tx.   77388
  40.   (713) 350-1438
  41.  
  42.  
  43.   * If no mode number is entered clear the current display screen.
  44.  
  45.   * ADD function "S" to switch to the opposite display.
  46.  
  47.  
  48.     Command format (with CONTROL.ASM linked as K.COM).
  49.  
  50.     K [enter] without any parameter will clear the current display       .
  51.       screen or you may issue K with a single parameter as described
  52.       below.
  53.  
  54.     K  [ S | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 ]
  55.  
  56.         S  =  Switch to the opposite monitor. If issued
  57.               from the monochrome switch to color (mode 2), if issued
  58.               from the color monitor switch to monochrome (mode 7).
  59.  
  60.               - Color Graphics adapter text modes
  61.  
  62.         0  =  40 X 25 black and white text.
  63.         1  =  40 X 25 color text.
  64.         2  =  80 X 25 black and white text.
  65.         3  =  80 X 25 color text.
  66.  
  67.               - Color Graphics adapter graphics modes
  68.  
  69.         4  =  320 X 200 color.
  70.         5  =  320 X 200 black and white.
  71.         6  =  640 X 200 black and white.
  72.  
  73.               - Monochrome mode
  74.  
  75.         7  =  Monochrome monitor.
  76.  
  77.      7  =  Monochrome monitor.
  78.  
  79.