rk/io.h

10 lines
134 B
C
Raw Normal View History

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