Added an I/O port driver and made it callable from C.

This commit is contained in:
2020-05-08 10:16:41 -05:00
parent e1a1169240
commit 3d4557343f
2 changed files with 15 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
#ifndef IO_H
#define IO_H
void outb(unsigned short port, unsigned char data);
#endif