代码搜索:IO控制

找到约 10,000 项符合「IO控制」的源代码

代码结果 10,000
www.eeworm.com/read/288542/8623027

inc io.inc

; ; File: ; io.inc ; Description: ; Segments and external common routines used by various device drivers ; ; Copyright (c) 1998 ;
www.eeworm.com/read/288542/8623298

asm io.asm

; ; File: ; io.asm ; Description: ; DOS-C I/O Subsystem ; ; Copyright (c) 1998 ; Pasquale J. Villani ;
www.eeworm.com/read/288458/8630936

h io.h

#define outb(value,port) \ __asm__ ("outb %%al,%%dx"::"a" (value),"d" (port)) #define inb(port) ({ \ unsigned char _v; \ __asm__ volatile ("inb %%dx,%%al":"=a" (_v):"d" (port)); \ _v; \ }) #define
www.eeworm.com/read/432021/8638222

c io.c

/* * $Id: io.c 1339 2006-09-21 19:46:28Z tbailey $ * * $Log$ * Revision 1.2 2006/03/08 20:50:11 nadya * merge chamges from v3_5_2 branch * * Revision 1.1.1.1.4.1 2006/01/26 09:16:27 tbaile
www.eeworm.com/read/432021/8638370

o io.o

www.eeworm.com/read/432021/8638716

h io.h

/* * $Id: io.h 1339 2006-09-21 19:46:28Z tbailey $ * * $Log$ * Revision 1.2 2006/03/08 20:50:12 nadya * merge chamges from v3_5_2 branch * * Revision 1.1.1.1.4.1 2006/01/26 09:16:27 tbaile
www.eeworm.com/read/432021/8638853

o io.o

www.eeworm.com/read/288162/8650812

vwf io.vwf

/* WARNING: Do NOT edit the input and output ports in this file in a text editor if you plan to continue editing the block that represents it in the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/387835/8651560

h io.h

www.eeworm.com/read/287922/8660926

h io.h

#define outb(value,port) \ __asm__ ("outb %%al,%%dx"::"a" (value),"d" (port)) #define inb(port) ({ \ unsigned char _v; \ __asm__ volatile ("inb %%dx,%%al":"=a" (_v):"d" (port)); \ _v; \ }) #define