hazel/include/kernel/io.h

10 lines
138 B
C
Raw Normal View History

2024-06-27 18:36:32 -04:00
#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