home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / intlist1.zip / STDAUX.TXT < prev   
Text File  |  1994-01-01  |  647b  |  16 lines

  1. --------D-2103-------------------------------
  2. INT 21 - DOS 1+ - READ CHARACTER FROM STDAUX
  3.     AH = 03h
  4. Return: AL = character read
  5. Notes:    keyboard checked for ^C/^Break, and INT 23 executed if detected
  6.     STDAUX is usually the first serial port
  7. SeeAlso: AH=04h,INT 14/AH=02h,INT E0/CL=03h
  8. --------D-2104-------------------------------
  9. INT 21 - DOS 1+ - WRITE CHARACTER TO STDAUX
  10.     AH = 04h
  11.     DL = character to write
  12. Notes:    keyboard checked for ^C/^Break, and INT 23 executed if detected
  13.     STDAUX is usually the first serial port
  14.     if STDAUX is busy, this function will wait until it becomes free
  15. SeeAlso: AH=03h,INT 14/AH=01h,INT E0/CL=04h
  16.