1 2 3 4 5 6 7 8 9 10
#ifndef PIT_HPP #define PIT_HPP #include <cstdint> void pit_initialize(); void pit_delay_ms(std::int32_t ms); #endif // PIT_HPP