Windows equivalent of inb(), outb(), low level i/o

前端 未结 3 581
眼角桃花
眼角桃花 2021-01-15 22:32

I have some Linux code that monitors our hardware by collecting temperatures, voltages, and fan speeds, from the motherboard using inb(), outb(), inl(), etc. low level i/o f

3条回答
  •  野的像风
    2021-01-15 22:49

    Most hardware locations are mapped in areas not accesible from userspace, so you are going to need a device driver that provides the desired API.

    You can also check the UNIX Application Migration Guide ad MSDN.

提交回复
热议问题