mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2024-10-27 20:34:19 +00:00
12 lines
252 B
C
12 lines
252 B
C
#ifndef PORTS_H
|
|
#define PORTS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
unsigned char port_byte_in (uint16_t port);
|
|
void port_byte_out (uint16_t port, uint8_t data);
|
|
unsigned short port_word_in (uint16_t port);
|
|
void port_word_out (uint16_t port, uint16_t data);
|
|
|
|
#endif
|