1 2 3 4 5 6 7 8 9 10 11 12
#ifndef HOS_AMD64_IO_PORTS_H #define HOS_AMD64_IO_PORTS_H #include <cstdint> namespace hos::io { extern "C" std::uint8_t inb (std::uint16_t port); extern "C" void outb (std::uint16_t port, std::uint8_t value); } #endif