home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / qterm / qtpat42.lbr / QT-TS803.ZY / QT-TS803.ZY
Text File  |  1991-05-29  |  512b  |  25 lines

  1. ; QT-TS803.Z - patch to disable interrupt driven input for QTERM on the 803,
  2. ; this simply polls the modem
  3.  
  4. ; modify the input & input status routines
  5.  
  6. .org    0x0110
  7. modist:
  8.     in    a,(0x2d)
  9.     and    0x80
  10.     ret
  11.  
  12. .org    0x0120
  13. modin:
  14.     in    a,(0x2f)
  15.     ret
  16.  
  17. ; Entry and exit hooks. These are provided to perform custom initialisation
  18. ; on startup, and also to perform custom code on exit.
  19.  
  20. .org    0x0270
  21. entry:    ret
  22.  
  23. .org    0x0273
  24. exit:    ret
  25.