blu_os
Loading...
Searching...
No Matches
io.h
1//
2// Created by dylan on 11/07/2026.
3//
4
5#ifndef BLU_OS_IO_H
6#define BLU_OS_IO_H
7#include <stdint.h>
8
9void outb(uint16_t port, uint8_t value);
10
11uint8_t inb(uint16_t port);
12
13void ioWait();
14
15#endif //BLU_OS_IO_H
Fixed-width integer types.