home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug162.arc / PACMAN.DOC < prev    next >
Text File  |  1979-12-31  |  2KB  |  46 lines

  1. (Updated and corrected 04/03/82)
  2.  
  3.   The compiled version of PACMAN (PACMAN95.OBJ) can be easily 
  4. patched any terminal that has the following characteristics:
  5.  
  6. 1.  A CLEAR SCREEN command of 2 characters of less
  7.  
  8. 2.  A CURSOR ADDRESSING command that is of the form:
  9.      <ESC> <char> <ROW> <COLUMN>    with offset = 32
  10.  
  11. 3.  A CURSOR ON and CURSOR OFF command that is of the form:
  12.      <char> <char> <char>
  13.     (This is not necessary however)
  14.  
  15.  
  16.   The points to patch for CLEAR SCREEN are:
  17. Address: 2FDAH ====> First character    (Currently ESC)
  18.          2FDBH ====> Second character   (Currently ";")
  19.  
  20.   The points to patch for CURSOR ADDRESSING are:
  21. Address: 37F3H ====> First character    (Currently ESC)
  22.          37FCH ====> Second character   (Currently "=")
  23.  
  24.   The points to patch for CURSOR ON are:
  25. Address: 3D9EH ====> First character    (Currently ESC)
  26.          3D9FH ====> Second character   (Currently ".")
  27.          3DA0H ====> Third character    (Currently "1")
  28.  
  29.   The points to patch for CURSOR OFF are:
  30. Address: 27DCH ====> First character    (Currently ESC)
  31.          27DDH ====> Second character   (Currently ".")
  32.          27DEH ====> Third character    (Currently "0")
  33.  
  34.   The direction keys are located:
  35. Address: 347BH ====> Move LEFT          (Currently "S")
  36.          34ABH ====> Move DOWN          (Currently "X")
  37.          3493H ====> Move UP            (Currently "E")
  38.          3487H ====> Move RIGHT         (Currently "D")
  39.  
  40.   The QUIT character ("Q") is located at address 34E7H.
  41.  
  42. This version is set-up to work with a TeleVideo 950 terminal.
  43. PACMAN89.OBJ is set-up to work with an H89 terminal.  Both
  44. files are the same, except for the patching information.
  45.  
  46.