home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / MOUSE / FIXCOM2.ZIP / FIXCOM.DOC next >
Encoding:
Text File  |  1989-01-12  |  2.1 KB  |  52 lines

  1.                                                              
  2.    Programs :  FIXCOM2.COM  for adding Communications Port 2
  3.                FIXCOM3.COM  for adding Communications Port 3
  4.                FIXCOM4.COM  for adding Communications Port 4
  5.  
  6.    Problem  :  The IBM Model 30/286 does not update its ROM BIOS device 
  7.                vector at 40:00 with the appropriate communications port
  8.                address to allow the Practical Peripherals internal modems
  9.                to be seen by software using ROM BIOS device calls.
  10.  
  11.    CAUTION  :  Practical Peripherals is supplying this as an aid to 
  12.                Model 30/286 Users and can not be held responsible for
  13.                the use or support of this patch.
  14.  
  15.                This program patch is being offered in AS IS condition
  16.                and no further modifications will be made.
  17.  
  18.    Description : 
  19.  
  20.      This is a ROM BIOS direct write program that loads the device
  21.      address vector at 40:00 with the appropriate PORT address.
  22.                
  23.                COM 2 = 02F8
  24.                COM 3 = 03E8
  25.                COM 4 = 02E8
  26.  
  27.      The User must determine which communications port to use and 
  28.      select the correct FIXCOM_.COM to enter the appropriate port
  29.      address into the device vector.
  30.  
  31.      Such a write would be valid only until the system is rebooted.
  32.  
  33.      As a patch for the problem, the appropiate FIXCOM_.COM could be
  34.      included in your AUTOEXEC.BAT for automatic reinitialization of
  35.      the device vector.
  36.  
  37.    Example :
  38.  
  39.      The following is an example of the device vector at 40:00, showing
  40.      a device only at 03F8 which is port 1.
  41.  
  42. -D40:00          
  43. 0040:0000  F8 03 00 00 00 00 00 00-78 03 00 00 00 00 00 00   ........x.......
  44. 0040:0010  2F 44 00 80 02 02 00 40-00 00 30 00 30 00 20 39   /D.....@..0.0. 9
  45.  
  46.      After the FIXCOM2.COM had been run, the device vector should show :
  47.  
  48. -D40:00          
  49. 0040:0000  F8 03 F8 02 00 00 00 00-78 03 00 00 00 00 00 00   ........x.......
  50. 0040:0010  2F 44 00 80 02 02 00 40-00 00 30 00 30 00 20 39   /D.....@..0.0. 9
  51.  
  52.