furnace/src/check/check_sysIO.c
tildearrow d085f76c7f issue #588, part 3
add check for the existence of inb() and outb()
2022-07-14 22:29:04 -05:00

6 lines
79 B
C

#include <sys/io.h>
int main(int, char**) {
inb(0x61);
outb(0x00,0x61);
}