请输入您要查询的百科知识:

 

词条 bioscom
释义

§ 函数名

bioscom

§ 功能

串行I/O通信

§ 用法

int bioscom (int cmd, char abyte, int port);

§ 程序实例

#include <bios.h>

#include <conio.h>

#define COM1      0

#define DATA_READY 0x100

#define TRUE      1

#define FALSE     0

#define SETTINGS ( 0x80 | 0x02 | 0x00 | 0x00)

int main(void)

{

int in, out, status, DONE = FALSE;

bioscom(0, SETTINGS, COM1);

cprintf("... BIOSCOM 【ESC】 to exit ...\");

while (!DONE)

{

status = bioscom(3, 0, COM1);

if (status & DATA_READY)

if ((out = bioscom(2, 0, COM1) & 0x7F) != 0)

putch(out);

if (kbhit())

{

if ((in = getch()) == '\\x1B')

DONE = TRUE;

bioscom(1, in, COM1);

}

}

return 0;

}

随便看

 

百科全书收录594082条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/19 3:11:02