summaryrefslogtreecommitdiff
path: root/Kernel/i8253.h
blob: 737880c00d2c568c05e5ec9f84c14bf8c02cbc8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <AK/Types.h>

#define TICKS_PER_SECOND          1000

namespace PIT {

void initialize();
dword ticks_this_second();
dword seconds_since_boot();

}