Deleted inb and outb functions.

This commit is contained in:
2020-08-01 19:05:37 -05:00
parent 39710685fb
commit 6dc610c9aa
4 changed files with 1 additions and 26 deletions

View File

@@ -1,13 +0,0 @@
.global outb
outb:
mov 4(%esp), %dx
mov 8(%esp), %al
out %al, %dx
ret
.global inb
inb:
mov 4(%esp), %dx
xor %eax, %eax
in %dx, %al
ret

View File

@@ -1,8 +0,0 @@
#ifndef PIO_H
#define PIO_H
extern "C" void outb(short port, char data);
extern "C" char inb(short port);
#endif