summaryrefslogtreecommitdiff
path: root/kernel/include/drivers/hpet.hpp
blob: 16469286dee3dae7b4d2429c30983cd28e07b70e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

#include <cstdint>

#pragma once

namespace drivers {
    class hpet {
    public:
        static void init();
        static void sleep(std::uint64_t us);
        static std::uint64_t nanocurrent();
    };
}