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

unsigned char insb(unsigned short port);
unsigned short insw(unsigned short port);

void outb(unsigned short port, unsigned char val);
void outw(unsigned short port, unsigned short val);
#endif /* IO_H */