aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/io/io.c
blob: 7bddb130279c057c6e597d0fe7ca6c57d5b5e8cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdint.h>

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));
}

void reboot() {
    uint8_t good = 0x02;
    while (good & 0x02)
        good = receive(0x64);
    send(0x64, 0xFE);
    loop:
    asm volatile ("hlt");
    goto loop;
}