2020-12-16 20:26:16 +00:00
|
|
|
/*
|
|
|
|
* <sys/io.h> - very low level IO
|
|
|
|
*
|
|
|
|
* This header is a part of the FENIX C Library and is free software.
|
|
|
|
* You can redistribute and/or modify it subject to the terms of the
|
|
|
|
* Clumsy Wolf Public License v4. For more details, see the file COPYING.
|
|
|
|
*
|
|
|
|
* The FENIX C Library is distributed WITH NO WARRANTY WHATSOEVER. See
|
|
|
|
* The CWPL for more details.
|
|
|
|
*/
|
|
|
|
|
2020-12-01 23:40:03 +00:00
|
|
|
#ifndef _SYS_IO_H
|
|
|
|
#define _SYS_IO_H
|
|
|
|
|
2020-12-18 18:39:04 +00:00
|
|
|
unsigned char inb(unsigned short int port);
|
|
|
|
|
|
|
|
void outb(unsigned char val, unsigned short port);
|
2020-12-01 23:40:03 +00:00
|
|
|
|
|
|
|
#endif
|