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 / ENTERPRS / CPM / UTILS / A / CONF.ARK / CONF.HLP < prev   
Text File  |  1989-09-27  |  6KB  |  135 lines

  1. Help is available on the following subjects:                       21 Jan 85
  2.  
  3.     40COL    BAUD    BACK    BORD    CHAR    CURSOR
  4.     DATE    DRV    DUMP    FEEL    HELP    MAP
  5.     PARITY    POKE    PRT    REPEAT    VOL
  6. 
  7.     40COL        =ON, OFF
  8.  
  9. This Command is used to turn the 40 column display ON or OFF.  The 40 column
  10. display slows the system  down about 10%.  By  turning it off the the system
  11. will run a little faster.
  12. 
  13.     BAUD        =50,75,110,134,150,300,600,1200
  14.  
  15. The modem port BAUD rate  may be  changed with this command.  Setting the BAUD
  16. rate also changes FEEL and to a lesser  extent  REPEAT.   As the  baud rate is
  17. increased the amount of time that the processor has to do things is decreased.
  18. The system handles the serial port using interrupts.  The number of interrupts
  19. per second is 3 times the  baud rate.  See FEEL for more info.
  20. 
  21.     BACK        =<color#>
  22.  
  23. Set current screen Background color to color supplied.
  24. 
  25.     BORD        =<color#>
  26.  
  27. Set current screen Border color (40 column screen only) to color supplied.
  28. 
  29.     CHAR        =<color#>
  30.  
  31. Set current screen Character color to color supplied.
  32. 
  33.     CURSOR        = {solid, slow or fast} followed by start (space) end
  34.  
  35. Sets the 80 column display cursor to solid or flash (slow or fast).  The user
  36. may also include one  or two optional  parameters that  set the start and end
  37. scan line for  the cursor.  This can be used to create an underline cursor or
  38. a strike thru cursor.
  39.  CURSOR=FAST 4 will start the cursor at scan line 4 and end on scan line 7. 
  40.  CURSOR=FAST 0 4 will give a half cursor at top of line.
  41.  CURSOR=FAST 7 will give an underline cursor.
  42. 
  43.     DATE        =[<month>/<day>/<year>] [<hour>[:<min>]]
  44.  
  45. This command is used to show the current date and time (if no parameters are
  46. supplied) or set a new time and/or date.
  47. DATE   will show the current date and time.
  48. DATE 10: will set 10:00:00 with the current date
  49. DATE 10:45 1/21/85 will set the time and date as shown.
  50. 
  51.     DRV<letter>   A,B,C,D    =8-0, 8-1, 9-0, 9-1, 10-0, 10-1, 11-0, 11-1
  52.  
  53. This command  is used to  allow a DUAL disk drive to be used.  The system
  54. defaults drive 8-0 to A, 9-0 to B, 10-0 to C and 11-0 to D. If you have a
  55. DUAL drive it is numbered 8-0 and 8-1.  With  this command you can change
  56. any drive to use 8-1.
  57. DRVC=8-1        will set drive 8-1 to be used as C
  58. DRVB=10-0,DRVC=10-1    will set dual drive #10 as drive B and C
  59. 
  60.     DUMP xxxx  (address to dump in HEX)
  61.  
  62. This command will dump 16 bytes of memory starting from the HEX address 
  63. supplied. This is NOT the TPA memory (bank 1) but instead is RAM BANK 0
  64. which is the operation system area.
  65. 
  66.     FEEL        =0,1...
  67.  
  68.     Feel is a parameter that adjust the way the keyboard feels.  The keyboard
  69. is scanned with interrupts (the same interrupts that handle the serial port).
  70. Thus  as the  BAUD rate  is  increased  the number  of  key  scans per second
  71. increases.  To  get around this  problem not every interrupt is  used to scan
  72. the keyboard.  FEEL  sets the number of interrupts that  are not used between
  73. each one that is used.  As the number of key scans is increased the processor
  74. slows down. The FEEL parameter is changed when ever the BAUD rate is changed.
  75. The  default  values are  set to  try  to keep about 300 keyboard  scans  per
  76. second.  (At 300 BAUD, FEEL is defaulted to 2).  NOTE: The FEEL value for 600
  77. and 1200 BAUD are adjusted as follows:
  78.     @600 ADJ=((FEEL+1)*2)-1   and   @1200 ADJ=((FEEL+1)*4)-1 
  79. 
  80.     HELP        (=topic)
  81.  
  82. This HELP file  (CONF.HLP)  works with  CONF.COM  dated  21 Jan 85. There are
  83. two ways to  use HELP.  One way is to type  CONF HELP  which  will  place you
  84. at a  prompt which  will allow you to select  the  topic about which you want
  85. information.  The other way is to use help on a command line as follows:
  86.     CONF HELP=topic
  87. where topic is the specific topic about which you want information.
  88.  
  89. CONF is designed so that multiple commands  and associated  parameters can be
  90. specified on a single line as shown in the following example:
  91.     CONF char=2,help=feel,repeat=0
  92. sets character color to red, gives help on feel and turns keyboard repeat off.
  93. 
  94.     MAP        (map character sets)
  95.  
  96. This command will display both the primary and the alternate character sets.
  97. 
  98.     PARITY        =<number><parity><stops>
  99.  
  100. The serial data  can be  sent or received with a number of options.  The normal
  101. and default value is 8 bits, no parity, 1 stop bit (8N1).  This command  allows
  102. you to set the  number of bits to 7 or 8. The  parity to Odd, Even, Mark, Space
  103. or None (only the first letter is used). and the number of stop bits to 1 or 2.
  104. 
  105.     POKE xxxx    =byte,[byte,byte,....,byte]
  106.  
  107. This command will allow the user to change bytes within the operating system.
  108. Care must be  taken because with this command you can BOMB your system.  This
  109. command works with  BANK 0 and NOT the TPA  (bank 1).  The address range that
  110. can be changed in 1000 to FEFF, below 1000h is ROM.
  111. POKE 4000=41 42 43 44 45    will write 41 to 4000 and 42 to 4001 etc.
  112. POKE 4000=4142434445        will do the same as the above line
  113. 
  114.     PRT
  115.     PRT1 or PRT2    = CBM, ASCII(secondary adr), MPS1000(in IBM mode)
  116.  
  117. This command allows you  to specify  whether true ASCII or PET ASCII will be
  118. sent to a  printer on  the serial port.  The CBM parameter selects PET ASCII
  119. with a secondary address of 7. (A secondary address of 7 selects upper/lower
  120. case).  The  ASCII parameter selects true  ASCII and  defaults the secondary
  121. address to 0.  If a number follows the command  it is used  as the secondary
  122. address. The MPS1000 printer can be placed in true ASCII mode by placing DIP
  123. switches 1 and 3 on and using the MPS1000 selection (same as =ASCII 128).
  124. 
  125.     REPEAT        =0,1,....
  126.  
  127. This command sets the rate at which keys will repeat. A parameter of 0 turns
  128. off repeat; otherwise, the lower the number, the faster the repeat.
  129. 
  130.     VOL        =0,1,2,3,4,5,6,7,...,15
  131.  
  132. This command  sets the volume of  the  keyclicks as specified by the associated
  133. parameter. (0 turns the volume off; 15 sets the loudest keyclick; default is 6)
  134. 
  135.