函式名: inportb 功 能: 返回從指定硬體連線埠讀入的一個8位二進制(一個位元組)。用 法: void outportb(INT port); 程式例: #include <stdio.h> #include <dos.h>int main(void){int value ;int port =0x210;value=inportb(port);printf("port 0x%x sent Value is%d\n", port,value );return 0;}