home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mskermit / mstapc.txt < prev    next >
Text File  |  2020-01-01  |  2KB  |  43 lines

  1.  
  2. This note describes the capabilities of MS-DOS MSKermit as implemented for
  3. the NEC Advanced Personal Computer (APC).  The APC system dependent portion of
  4. the code (both port and terminal handlers) resides in the file MSXAPC.ASM.
  5. This is the only module required in addition to those that all implementations
  6. need.
  7.  
  8. MSKermit on the APC supports both the standard serial port (as port 1) and
  9. the optional (H14) add-on serial port (as port 2).  Port selection is
  10. performed using the SET PORT command.  Any baud rate up to 38400 is legal
  11. although 38400 has never been tested and may not work well.  The port is
  12. always configured as 8 data bits, no parity, and 1 stop bit.  Any necessary
  13. parity is supplied by Kermit.
  14.  
  15. The interrupt vector used by the optional port is jumper-selectable.  Kermit
  16. is set up to use IR8 by default, so if another vector is required the
  17. MSXAPC.ASM file must be altered and reassembled.  The changes are well
  18. commented, and only amount to changing the value of a conditional.
  19.  
  20. Terminal mode support on the APC is relatively primitive.  The only provisions
  21. that have been made for emulation are in the operating system firmware, which
  22. supports a limited subset of both VT100/ANSI and ADM-3A commands.
  23.  
  24. Two pages of screen memory and rollback are also provided by the firmware.
  25. Control-uparrow scrolls back one line, while control-downarrow scrolls forward
  26. a line.
  27.  
  28. Screen printing is performed by the CRTDUMP resident extension to MS-DOS
  29. using the control-print command.  The print (or control-P) key alone causes
  30. Kermit to toggle echoing of the screen display to the printer.
  31.  
  32. Key redefinition by scan code is provided, including modification by
  33. any of the shift or latching keys (FNC, CTRL, SHIFT, CAPS, GR1, GR2,
  34. and ALT).  Use the SHOW KEY command to determine the scan code for
  35. a particular combination, and the SET KEY command to redefine it.
  36. Function keys defined using the traditional KEY program still work,
  37. but those definitions are overridden by the SET KEY command.
  38.  
  39. The default escape character is control-].  This may be entered in
  40. the conventional manner using the CTRL key, or alternatively the left
  41. arrow key also generates this combination (if it has not been redefined).
  42.  
  43.