summaryrefslogtreecommitdiff
path: root/kernel/amd64/io/ports.h
blob: 6de2acb3ee587e0e089c5acc264af7d49bd4652e (plain)
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