mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-19 02:55:11 +00:00
d085f76c7f
add check for the existence of inb() and outb()
6 lines
79 B
C
6 lines
79 B
C
#include <sys/io.h>
|
|
|
|
int main(int, char**) {
|
|
inb(0x61);
|
|
outb(0x00,0x61);
|
|
}
|