1
0

ports.h 228 B

1234567891011
  1. #ifndef PORTS_H
  2. #define PORTS_H
  3. #include "../cpu/types.h"
  4. unsigned char port_byte_in (u16 port);
  5. void port_byte_out (u16 port, u8 data);
  6. unsigned short port_word_in (u16 port);
  7. void port_word_out (u16 port, u16 data);
  8. #endif