rk/include/io.h
2024-05-23 00:31:32 -05:00

12 lines
174 B
C

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