#ifndef HOS_AMD64_IO_PORTS_H #define HOS_AMD64_IO_PORTS_H #include 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