Kernel IO

This commit is contained in:
Ben
2019-04-25 08:57:40 +01:00
parent fa35441595
commit d83a4444e5
2 changed files with 17 additions and 0 deletions

13
kernel/kernio.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include "kernio.h"
inline void outb(uint16_t port, uint8_t b) {
asm("outb %0, %1" : : "a"(b), "Nd"(port));
}
inline uint8_t inb(uint16_t port) {
uint8_t ret;
asm volatile ( "inb %1, %0"
: "=a"(ret) // Output
: "Nd"(port)); // Input
return ret;
}