rk/include/io.h
2024-05-21 21:13:07 -05:00

10 lines
134 B
C

#ifndef IO_H_
#define IO_H_
#include <stdint.h>
uint8_t inportb(uint16_t port);
void outportb(uint16_t port, uint8_t byte);
#endif