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 / C128-MEX.FIX < prev    next >
Internet Message Format  |  2000-06-30  |  1KB

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