io_low_HLL.h
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:0k
源码类别:

操作系统开发

开发平台:

C/C++

  1. #ifndef IO_LOW_HLL_H
  2. #define IO_LOW_HLL_H
  3. inline unsigned char inportb(unsigned int port);
  4. inline void outportb(unsigned int port,unsigned char value);
  5. inline void outportlong(unsigned int port,unsigned long value);
  6. inline unsigned long inportlong(unsigned int port);
  7. #endif