issue #588, part 3

add check for the existence of inb() and outb()
This commit is contained in:
tildearrow 2022-07-14 22:29:04 -05:00
parent 3df5a6e2b6
commit d085f76c7f
2 changed files with 13 additions and 2 deletions

6
src/check/check_sysIO.c Normal file
View file

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