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

  1. NOTE: This file applies to previous (2.27 or 2.28) releases of the program.
  2. It's not certain to what degreee it's valid for 2.29.
  3.  
  4.  
  5. This note describes the capabilities of MS-DOS MSKermit as implemented for
  6. the NEC Advanced Personal Computer (APC).  The APC system dependent portion of
  7. the code (both port and terminal handlers) resides in the file MSXAPC.ASM.
  8. This is the only module required in addition to those that all implementations
  9. need.
  10.  
  11. MSKermit on the APC supports both the standard serial port (as port 1) and
  12. the optional (H14) add-on serial port (as port 2).  Port selection is
  13. performed using the SET PORT command.  Any baud rate up to 38400 is legal
  14. although 38400 has never been tested and may not work well.  The port is
  15. always configured as 8 data bits, no parity, and 1 stop bit.  Any necessary
  16. parity is supplied by Kermit.
  17.  
  18. The interrupt vector used by the optional port is jumper-selectable.  Kermit
  19. is set up to use IR8 by default, so if another vector is required the
  20. MSXAPC.ASM file must be altered and reassembled.  The changes are well
  21. commented, and only amount to changing the value of a conditional.
  22.  
  23. Terminal mode support on the APC is relatively primitive.  The only provisions
  24. that have been made for emulation are in the operating system firmware, which
  25. supports a limited subset of both VT100/ANSI and ADM-3A commands.
  26.  
  27. Two pages of screen memory and rollback are also provided by the firmware.
  28. Control-uparrow scrolls back one line, while control-downarrow scrolls forward
  29. a line.
  30.  
  31. Screen printing is performed by the CRTDUMP resident extension to MS-DOS
  32. using the control-print command.  The print (or control-P) key alone causes
  33. Kermit to toggle echoing of the screen display to the printer.
  34.  
  35. Key redefinition is provided, but only for the keyboard keys.  The function
  36. keys must be defined using the system's KEY program.  There is no direct
  37. access to the keyboard's scan codes on the APC, so instead each key is
  38. redefined by its ASCII value, limiting the usefulness of this function.
  39.  
  40. The default escape character is control-].  Bugs in the firmware prevent
  41. this control sequence from being returned to the program, however, so it
  42. is necessary to instead use the left arrow key which sends the control-]
  43. code.  Another alternative is to redefine the escape character in your
  44. MSKERMIT.INI initialization file.
  45.  
  46.  
  47. Despite these limitations, MSKermit for the APC is being released so that
  48. the benefits of its file transfer capability are available to APC MS-DOS
  49. users.  It is to be hoped that these users will take it on themselves to
  50. enhance the capabilities.
  51.