ports.h 252 B

1234567891011
  1. #ifndef PORTS_H
  2. #define PORTS_H
  3. #include <stdint.h>
  4. unsigned char port_byte_in (uint16_t port);
  5. void port_byte_out (uint16_t port, uint8_t data);
  6. unsigned short port_word_in (uint16_t port);
  7. void port_word_out (uint16_t port, uint16_t data);
  8. #endif