hazel/include/kernel/io.h

10 lines
138 B
C

#ifndef HAZEL_IO_H_
#define HAZEL_IO_H_
#include <stdint.h>
uint8_t inb(uint16_t port);
void outb(uint16_t port, uint8_t byte);
#endif