From 48e33bd3ee5f62f1b27d8a7aa6cfb697b497e03f Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Thu, 5 Feb 2015 20:57:30 -0500 Subject: add outw function --- kernel/include/io.h | 1 + 1 file changed, 1 insertion(+) (limited to 'kernel/include/io.h') diff --git a/kernel/include/io.h b/kernel/include/io.h index c3c735b..d1177ac 100644 --- a/kernel/include/io.h +++ b/kernel/include/io.h @@ -1,4 +1,5 @@ #include void outb(uint16_t port, uint8_t val); +void outw(uint16_t port, uint16_t val); uint8_t inb(uint16_t port); uint16_t inw(uint16_t port); -- cgit v1.1