rk/include/io.h

10 lines
140 B
C
Raw Normal View History

#ifndef RK_IO_H_
#define RK_IO_H_
2024-05-20 05:59:07 -04:00
#include <stdint.h>
uint8_t inportb(uint16_t port);
void outportb(uint16_t port, uint8_t byte);
#endif