outb, outw, outl函数

功能
如 i386 ,在区别 I/O 空间和内存空间的进程的 I/O 空间写入数据。
  • outb()   I/O 上写入 8 位数据 ( 1 字节 );
  • outw() I/O 上写入 16 位数据 ( 2 字节 );
  • outl () I/O 上写入 32 位数据 ( 4 字节)。
原型
引用
#include <asm/io.h>

void outb ( unsigned char data , unsigned short port);
void outw ( unsigned short data , unsigned short port);
void outl ( unsigned long data , unsigned short port);


变量
  • port  I/O 地址
  • data 数据

你可能感兴趣的:(outb, outw, outl函数)