12 lines
225 B
C
12 lines
225 B
C
|
#pragma once
|
||
|
#include <stdint.h>
|
||
|
|
||
|
namespace PIT
|
||
|
{
|
||
|
extern volatile uint64_t ms_since_boot;
|
||
|
const uint64_t base_frequency = 1193182;
|
||
|
void initialize(uint64_t frequency);
|
||
|
uint64_t frequency();
|
||
|
void tick();
|
||
|
}
|