home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 249.lha / Ami3270.doc < prev    next >
Text File  |  1989-05-25  |  4KB  |  149 lines

  1.                                Ami3270 
  2.                    ~~~~~~~
  3.  
  4.  
  5. Ami3270  -  Assembly language 3270 terminal emulator.
  6. Version   - 1.3
  7. Copyright - Copyright (c) by David Jenkins, 17 Jan 1988.
  8.             I can be reached at the Beacon 416-297-5607.
  9.  
  10.  
  11.      This program may be distributed freely, but please keep the 
  12. documentation with the load module.
  13.  
  14.  
  15.  
  16. Program desciption
  17. ~~~~~~~~~~~~~~~~~~
  18.  
  19.  
  20.     Ami3270 is a terminal program based on Jez San's Argoterm. I wrote
  21. it to provide a way of logging on to IBM mainframes running a VT100 to
  22. 3270 protocol converter; the two protocol converters Ami3270 supports
  23. are SIM3278 (a software protocol converter) and the PCI protocol converter.
  24. All the VT100 emulators I have tried have at least one - and sometimes more -
  25. problems. The usual one is scrolling of the display when the bottom line
  26. is reached; this is a problem with SIM3278. Ami3270 avoids the annoyance.
  27.  
  28.  
  29.     The program is written in assembler and is therefore small. At the
  30. moment it does not make use of the intuition interface: to set parameters
  31. you have to hit the 'help' key. The text display is at least 2400 bps.
  32.  
  33.  
  34.  
  35. Input parameter
  36. ~~~~~~~~~~~~~~~
  37.  
  38.     Ami3270 will take 1 input parameter: it is a single digit 
  39. number which determines the size of the top border. The default is 8.
  40. If you would like a border of 0, start the program like this: 
  41. "run Ami3270 0". The border includes one blank scan line so
  42. a value of 0 looks the same as 1; 0 puts the text one scan line
  43. higher, though. Be careful of specifying more than 8; you have
  44. to have a 24 line window. If you use a value of 0 the window depth
  45. gadgets become invisible; they are still there, though.
  46.  
  47. For those of you who would like to zap the default, it is at 
  48. sector 1, offset $3c. Using Newzap you will see a word '0008'
  49. at this location: changing this to '0000' will give you a default
  50. border of zero.
  51.  
  52.  
  53.  
  54. Using Ami3270
  55. ~~~~~~~~~~~~~
  56.  
  57.  
  58.     When the program comes up it opens a borderless window on the 
  59. workbench screen. The window will fill the screen apart from a small border
  60. at the top: this is to allow room for a clock. If you use morerows the window
  61. expands automatically to fill the whole screen; with morerows a window sizing
  62. gadget will be visible in the bottom right hand corner. Without morerows the
  63. sizing gadget is invisible but still there. The window sizing is permitted
  64. to give access to workbench icons; when you use the window make sure it is
  65. at full size or the data will be displayed incorrectly.
  66.  
  67.  
  68.  
  69.     I have used an intelligent method of deciding whether the
  70. emulator should be running in full screen mode or line by line mode. In
  71. practice, this means that the screen should scroll normally when you are
  72. not logged on to SIM3278, but should behave as a full screen when you are.
  73. In case you want to change this manually I have included two  options:
  74. F for full screen mode, and L for line by line mode.
  75.  
  76.  
  77.  
  78.     When SIM3278 asks for the terminal type enter '8' for VT100.
  79.  
  80.  
  81.  
  82.     The default settings when Ami3270 starts are:
  83.  
  84. Baud rate set to preferences value;
  85.  
  86. SIM3278 protocol converter used;
  87.  
  88. Half duplex (echo on).
  89.  
  90.  
  91.             Fkey settings
  92.             ~~~~~~~~~~~~~
  93.  
  94.  
  95. F1-10:      PF1-10.
  96. Shift F1-2: PF11-12.
  97. Shift F3-5: PA1-3.
  98. Shift F6:   HOME.
  99. Shift F7:   EOF.
  100. Shift F8:   INSERT.
  101. Shift F9:   BREAK
  102. Shift F10:  CLEAR.
  103.  
  104.  
  105.  
  106.  
  107.             Menu selections
  108.             ~~~~~~~~~~~~~~~
  109.  
  110.  
  111. B - Configure the transmission speed (Baud Rate)
  112.  
  113. Default set to preferences.
  114.  
  115.  
  116. E - Local Echo mode (Half Duplex) on/off
  117.  
  118. Toggles Half and Full duplex
  119.  
  120.  
  121. Q - Quit this program; terminate session
  122.  
  123.  
  124.  
  125. S - Emulator for SIM3278
  126.  
  127. SIM3278 protocol emulation. Also sets half duplex.
  128.  
  129.  
  130.  
  131. P - Emulator for PCI
  132.  
  133. PCI protocol emulation. Also sets full duplex.
  134.  
  135.  
  136. F - Switch to full screen manually.
  137.  
  138. This should occur automatically when you logon to SIM3278. It is not
  139. needed for the PCI.
  140.  
  141.  
  142. L - Switch to line by line.
  143.  
  144. This enables screen scrolling and should be set automatically when you
  145. logoff SIM3278. It is not relevant to the PCI.
  146.  
  147.  
  148.             David Jenkins.
  149.