cfenollosa_os-tutorial/23-fixes/cpu/ports.h
2015-08-18 10:31:28 +02:00

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