summaryrefslogtreecommitdiff
path: root/kernel/include/io.h
blob: d47abb325378541194c254d39ce77085638f086b (plain)
1
2
3
4
5
6
7
8
9
#ifndef IO_H
#define IO_H

#include <types.h>

uint8_t inb(uint32_t port);
void outb(uint32_t port, uint8_t value);

#endif