diff options
Diffstat (limited to 'src/io/io.c')
-rw-r--r-- | src/io/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/io/io.c b/src/io/io.c index d617cf2..2f42d04 100644 --- a/src/io/io.c +++ b/src/io/io.c @@ -4,6 +4,6 @@ unsigned char receive(unsigned short port) { return value; } -void send(unsigned short _port, unsigned char _data) { - __asm__ __volatile__ ("outb %1, %0" : : "dN" (_port), "a" (_data)); +void send(unsigned short port, unsigned char data) { + __asm__ __volatile__ ("outb %1, %0" : : "dN" (port), "a" (data)); } |