home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / beehive / zcat / mexpat01.doc < prev    next >
Text File  |  1991-01-30  |  1KB  |  42 lines

  1. Message received over ARPA Net (Jay Sage)
  2.  
  3. Date: August 2, 1986 18:49 EDT
  4. From: B.DUERR (William O. Duerr, GEnie CP/M RT SysOp)
  5. Sub:  MEX114 backspace patch
  6.  
  7.     GEnie does not seem to backspace properly when the character
  8. delete character is defined as a <DELETE> or decimal 127.  It does
  9. work well when defined as a Control-H or decimal 8.
  10.  
  11.     Mex has a way of converting the back the back space (Control-H)
  12. to a <DEL> character but not the visa versa.  This patch to MEX will
  13. change the <DEL> to a Control-H when the STAT parameter is on.
  14.  
  15.     First of all varify that you have the same code as I do.  I have
  16. MEX 1.14.  You will need DDT, or similar program.  The C-128 comes
  17. with SID, for what we are going to do, I think the program is
  18. similar enough.
  19.  
  20.    Enter at the A> prompt:  DDT mex.com
  21.    Then at the "-" prompt:  L4051
  22.  
  23.    at location 4051 you should see a CPI 08 instruction,
  24.    at location 405D you should see a MVI 7F instruction.
  25.  
  26.    To get out of DDT, enter Control-C.
  27.  
  28. Now get in to MEX as you normally do.
  29.  
  30.    On the MEX command line, enter
  31.  
  32.    POKE $4052 $7F
  33.    POKE $405E $08
  34.    STAT RUB ON
  35.  
  36.    You can now test the program.  When you know it works you can
  37.    CLONE it (make a copy of MEX with the modifications in it.)
  38.  
  39.    Don't forget to take the normal precautions when making
  40. modifications.  Take a backup.
  41.