furnace/src/check/check_sysIO.c

7 lines
89 B
C
Raw Normal View History

#include <sys/io.h>
2024-06-13 15:21:54 -04:00
int main(int argc, char** argv) {
inb(0x61);
outb(0x00,0x61);
}