en:docs:bios:api:int14:02

Note: This IBM PC BIOS API call is for DOS/Win16 personality only. Use Family API for portability.

Note: osFree Macro Library provides macros for most of functions

2022/03/13 05:41 · prokushev · 0 Comments

Int 14H, AH=02H

Version

IBM 5150 and higher

Brief

Recieve character from port

Family API

Input

  • AH = 02h
  • AL = 00h (ArtiCom)
  • DX = port number (00h-03h) (04h-43h for Digiboard XAPCM232.SYS)

Return

  • AH = line status (see #00304)
  • AL = received character if AH bit 7 clear

Macro

INCLUDE BIOS.INC
 
@AuxRecieveChar 0

Notes

  • will timeout if DSR is not asserted, even if function 03h returns data ready
  • various network and serial-port drivers support the standard BIOS functions with interrupt-driven I/O instead of the BIOS's polled I/O
  • the 1993/04/08 Compaq system ROM uses only the low two bits of DX

Note