rk/io.h
2024-05-20 05:59:07 -04: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