home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mskermit / msxz10.bwr < prev    next >
Text File  |  2020-01-01  |  876b  |  30 lines

  1. To: Frank da Cruz <SY.FDC@CU20B.COLUMBIA.EDU>
  2. From: John Voigt, Tulane Univ. Systems Group <SYSBJAV@TCSVM.BITNET>
  3. Date: 10/20/85 13:02:43 CDT
  4. Re: Error in Z100 KERMIT
  5.     
  6. August Treubig of Middle South Services discovered a bug in the Z100
  7. version of KERMIT.  It caused MS-DOS to crash.  The fix is in the GETBAUD
  8. routine.  Add the lines marked with ";***" below in the Z100 system
  9. dependent source file, MSXZ10.ASM:
  10.  
  11. GETBAUD    PROC    NEAR
  12.     mov    bx,ds
  13.     mov    es,bx
  14.     mov    bx,offset auxconf
  15.     mov    ah,chr_status
  16.     mov    al,chr_sfgc    ; Status function get config info
  17.     push    di        ;*** save this
  18.     call    bios_auxfunc
  19.     pop    di        ;*** restore
  20.     mov    ch,0
  21.     mov    cl,auxconf.cfbaud
  22.     mov    bp,portval
  23.     mov    ds:[bp].baud,cx
  24.     ret
  25. GETBAUD    ENDP
  26.  
  27. This fix has been added to the MSXZ10.ASM source in the Kermit distribution
  28. area, but the .BOO file is still based on the unfixed source (as of version
  29. 2.28, 7 June 1985).
  30.