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 / CPM / MEX / MEX114KP.NOT < prev    next >
Text File  |  2000-06-30  |  9KB  |  224 lines

  1. MEX114KP.NOT
  2.  
  3.      In the search for a communications program THAT WOULD WORK
  4. with a newly acquired 1200-baud modem, "The Maxwell" by Racal-
  5. Vadic, and the Kaypro 2X (4'84), it was suggested "Why not try
  6. MEX?"  The combination of MEX114.COM and MXO-KP41.ASM turned
  7. out to be the perfect combination. The first time I used it, it
  8. worked and has been working ever since.
  9.      It may be time consuming to read through all the MEX files
  10. for the first time, but it is worth all the effort. The MXO-KP41
  11. file also contains the dialing routine from MXO-SM13.ASM (the
  12. Hayes SmartModem overlay) so there is no need to have any other
  13. overlay file. What follows is a "how-to" assemble everything and
  14. get it up and running. This should work for all CP/M Kaypros with
  15. Hayes-compatible external modems.
  16.  
  17. 1.  Download MEX114.LBR, MEX-HLP.LBR, and MXO-KP41.AQM (which is
  18.     contained in the MEX-OVL.LBR). (De-lbr and Usq files that
  19.     need it).
  20.  
  21. 2.  Place MEX114.COM, MEX.HLP, MXO-KP41.ASM, MLOAD21.COM and
  22.     ASM.COM (this one came on your cpm diskette) on a diskette
  23.     and put this diskette into drive A.
  24.  
  25. 3.  At the A0> prompt type the following:
  26.  
  27.     A0>ASM MXO-KP41.AAZ
  28.  
  29.          This will assemble your Kaypro overlay file and give you
  30.          the needed .HEX file which must be bound into the system
  31.          by typing the following at the A0> prompt:
  32.  
  33. 4.  A0>MLOAD21 MEX.COM=MEX114.COM,MXO-KP41
  34.  
  35.          You have just loaded a new MEX.COM file which is ready for
  36.          immediate use!!
  37.  
  38. *******************************************************************
  39.  
  40.                           HOWEVER - - - - - -
  41.  
  42.      Life with your modem can be made almost instantaneously easier
  43. if you do a few preparatory things before running your MEX program
  44. for the first time.
  45.  
  46. 1.  Create a file with your word processor or text editor (in non-
  47.     document mode) and name it INI.MEX - This is the file:
  48.  
  49.         stat wtecho on
  50.         stat search 3
  51.         stat split on
  52.         stat bakfile on
  53.         stat exclude off             (all these commands in this
  54.         stat filter on               (file should be typed at the
  55.         stat extend off              (left-hand edge of your screen
  56.         alt A0:
  57.         id "[inimex]"
  58.         load phone.phn
  59.         load keys.key
  60.         b:
  61.         term session.log
  62.         dir
  63.         global t
  64.  
  65. 2.  Save this file to disk and place it along with the other files
  66.     on your diskette in drive A.
  67.  
  68. 3.  Now, invoke MEX on the disk in drive A:
  69.  
  70.         A0>MEX
  71.  
  72. 4.  You will now see on your screen:
  73.  
  74.     [MEX] A0>>
  75.  
  76. 5.  At this prompt type:
  77.  
  78.         [MEX] A0>>STAT INITFILE ON
  79.  
  80.     This stat command will tell MEX to search for INI.MEX when
  81.     booting MEX.
  82.  
  83. 6.  Now create your phone library by typing at the prompt:
  84.  
  85.         [MEX] A0>>PHONE KAYFOG=285-2687 1200
  86.         [MEX] A0>>PHONE FIDO=1-404-926-1876 1200
  87.  
  88.     etc. After you have entered all the phone numbers you want,
  89.     then do the following:
  90.  
  91.         [MEX] A0>>SAVE PHONE.PHN
  92.  
  93.     You have just created a phone file called PHONE.PHN and the
  94.     next time you run MEX you can simply give the command:
  95.  
  96.         [MEX] A0>>LOAD PHONE.PHN
  97.  
  98.     However, since we have an INI.MEX file, loading the phone.phn
  99.     file is not necessary, as it will be loaded automatically
  100.     through the ini.mex file.
  101.  
  102. 7.  This process can also be used to create a KEYS.KEY file:
  103.  
  104.         [MEX] A0>>KEY L=<"logon sequence"> [MEX] A0>>KEY A="HELLO!"
  105.  
  106.     etc. You must enclose the keystring in quote marks. Now SAVE 
  107.     your KEYS file.
  108.  
  109. 8.      [MEX] A0>>SAVE KEYS.KEY
  110.  
  111.     The INI.MEX file will load the KEYS.KEY file just like the
  112.     phone file, the next time you invoke MEX.
  113.  
  114. 9.  Now, with the KEYS and PHONE files saved, and the STAT INITFILE
  115.     ON command given, you must CLONE this MEX file:
  116.  
  117.         [MEX] A0>>CLONE INIMEX.COM
  118.  
  119.     You can call your new mex.com file anything you want, but I have
  120.     called it INIMEX.COM because I used ID "[INIMEX]" in the
  121.     ini.mex file that was created with my word processor. If you
  122.     want your file named something else, just use that same name (less
  123.     the .com extension) in your ini.mex file. However, as stated
  124.     above, you don't even need an ini.mex file.
  125.  
  126. 10. Now after "cloning" has taken place, your new working MEX commun-
  127.     ications program can be invoked from your A0> prompt:
  128.  
  129.         A0>INIMEX
  130.  
  131.     and [INIMEX] A0>> prompt will appear on your screen. It is nice
  132.     to use a different name than MEX because you will always know
  133.     you are at your own command prompt if the computer at the other
  134.     end is also using MEX. I only like "inimex" because it reminds
  135.     me that I have my ini.mex-file commands in use. This way, I
  136.     don't have to worry about entering all these commands every time
  137.     I want to run MEX.
  138.  
  139. 11. Now at the INIMEX prompt, I can call kayfog (or anyone else in
  140.     the library) with the following command:
  141.  
  142.        [INIMEX] B0>>cal kayfog #5
  143.  
  144.     and my modem will call KAYFOG, and if there is no answer, it will
  145.     try five times before giving up; you could use any number #nn you
  146.     want. You are at the B0 drive because of your command in ini.mex. 
  147.  
  148.     After your modem makes a connect, because of your ini.mex file, you
  149.     will be automatically placed in terminal mode and will see a ":"
  150.     at the left margin if your capture file SESSIONS.LOG is on and
  151.     capturing everything that comes across the screen.
  152.  
  153. If you can't get the other computer's attention after making a
  154. connection, you can press <cr> a couple of times, and that should 
  155. do it. Now you are ready to communicate as always.
  156.  
  157. If you want to download MEX (for example), do the following after
  158. you are in the CP/M area:
  159.  
  160. A0>(or whatever drive/user area you are in), just type:
  161.  
  162.     B3>kmd s mex114.lbr
  163.  
  164. (here the computer will tell you how much time it will take to send
  165. the file, etc.) Then when you find that things are just "sitting
  166. there" you do the following:
  167.  
  168.     hit your CTRL-J key plus E to get back to command mode:
  169.  
  170.          ^JE
  171.  
  172.     then you will see your MEX prompt:
  173.  
  174.          [INIMEX] B0>>
  175.  
  176.     At this prompt, type the following:
  177.  
  178.          [INIMEX] B0>>r mex114.lbr
  179.  
  180. While transferring files (in 1k mode), MEX will print "logical" record
  181. numbers on the screen. (See Ron Fowler's "Progress reporting" statement
  182. in the -READ 114.ME file of the MEX114.lbr)
  183.  
  184. Credits: This short tutorial is taken from notes and documents of the
  185. MEX conference files located in the CP/M area of KAY*FOG. Special thanks
  186. to Ron Fowler for placing MEX in public domain, to Hank Tate for writing
  187. the MEX-SET2.DOC for the ini.mex file (notice I have used my own 
  188. commands, they are not quite the same as Hank Tate's), and to Will Kacy
  189. for the MEX-EASY.FIX file from which the phone.phn file was taken.
  190.  
  191. ***********************************************************************
  192.  
  193. You can get "on-line" help by typing HELP ?, or HELP <topic-name> for 
  194. any topic-name displayed by HELP ? You can also get help by typing
  195. CTRL-J+? (that is, hold down the control key while typing J and then
  196. press the space bar and then type the ? key - Do this control-J ? 
  197. AFTER going to terminal mode by pressing T at the command prompt of
  198. [MEX] etc.
  199.  
  200. Note that in most of the documents, reference is made to ESC E, ESC N,
  201. etc. while in terminal mode. Well, in version 1.14 of MEX, the ESC is
  202. no longer ESC, it is now CONTROL-J (^J). That is:
  203.  
  204.               ESC = ^J in version 1.14 of MEX
  205.  
  206. Please read MEX-SET2.DOC by Hank Tate. He gives an extremely clear
  207. explanation of the creation of the INI.MEX file.
  208.  
  209. For a full understanding of MEX, read everything that is in the MEX
  210. CONFERENCE. Most of the information deals with prior versions of
  211. MEX, but it makes for better understanding of the power that this
  212. program holds. It is a flexible program and "limited only by your
  213. own imagination". ENJOY!
  214.  
  215. E. McGowan, 5-10-86
  216.  
  217.  
  218. Almost forgot! After you tell the BBS "bye", return to command mode
  219. by typing ^JE and at the [INIMEX]B0>> prompt, type CPM and that will
  220. get you back to your system prompt. Also, SESSION.LOG (where you
  221. captured everything that came across the screen) is on drive B. If
  222. you are going to make another call, be sure to rename your SESSION.
  223. LOG because it will be wiped out the next time you make another call.
  224.