rk/include/kernel/io.h
2024-05-26 01:33:18 -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