aboutsummaryrefslogtreecommitdiff
path: root/kernel/io.c
blob: 33b7f7ce9274c4ee9f1f8a3f95c51b26e2d7c010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdint.h>
#include "io.h"

void outb(uint16_t port, uint8_t val)
{
    asm volatile ("outb %1, %0": :"dN" (port), "a" (val));
}

void outw(uint16_t port, uint16_t val)
{
    asm volatile ("outw %1, %0": :"dN" (port), "a"(val));
}

uint8_t inb(uint16_t port)
{
    uint8_t ret;
    asm volatile ("inb %1, %0" : "=a" (ret) : "dN" (port));
    return ret;
}

uint16_t inw(uint16_t port)
{
    uint16_t ret;
    asm volatile ("inw %1, %0" : "=a" (ret) : "dN" (port));
    return ret;
}