aboutsummaryrefslogtreecommitdiff
path: root/src/io/io.c
blob: 2f42d04882afba120b4fdb147ccaed0d356ef387 (plain) (blame)
1
2
3
4
5
6
7
8
9
unsigned char receive(unsigned short port) {
    unsigned char value;
    __asm__ __volatile__ ("inb %1, %0" : "=a" (value) : "dN" (port));
    return value;
}

void send(unsigned short port, unsigned char data) {
    __asm__ __volatile__ ("outb %1, %0" : : "dN" (port), "a" (data));
}