Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于 Linux,您可以<sys/io.h>在我假设的硬件中包含 I/O 端口?
<sys/io.h>
outb(...); outw(...); inb(...);
我必须包含哪个标头才能使这些功能用于 Windows 编译?
编辑: Windows 相当于inb(),outb()低级 I/O说这在 Windows 上是不可能的;您需要在 Windows 上安装驱动程序才能使用快速修复。
inb()
outb()
通常,对于 MS Windows 低级 io 是 WinAPI 函数,如 CreateFile、WriteFile 等。