A poorly written OS for the x86 arch. (WIP)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
eOS/kernel/io.c

27 lines
615 B

3 years ago
// Function to read a byte from port
unsigned char port_inb(unsigned short port) {
3 years ago
unsigned char res;
__asm__("in %%dx, %%al" : "=a" (res) : "d" (port));
return res;
}
3 years ago
// to write a byte to port
void port_outb(unsigned short port, unsigned char data) {
3 years ago
__asm__("out %%al, %%dx" : :"a" (data), "d" (port));
}
// Read word from port
unsigned short port_inw(unsigned short port) {
3 years ago
unsigned short res;
__asm__("in %%dx, %%ax" : "=a" (res) : "d" (port));
return res;
}
// write word to port
void port_outw(unsigned short port, unsigned short data) {
3 years ago
__asm__("out %%ax, %%dx" : :"a" (data), "d" (port));
3 years ago
}