ReactOS 0.4.15-dev-7906-g1b85a5f
clock.c
Go to the documentation of this file.
1/*
2 * PROJECT: Xbox HAL
3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4 * PURPOSE: PIT rollover table
5 * COPYRIGHT: Copyright 2020 Dmitry Borisov (di.sean@protonmail.com)
6 */
7
8/* INCLUDES ******************************************************************/
9
10#include <hal.h>
11
12/* GLOBALS *******************************************************************/
13
15{
16 {1125, 10000}, /* 1 ms */
17 {2250, 20000},
18 {3375, 30000},
19 {4500, 40000},
20 {5625, 50000},
21 {6750, 60000},
22 {7875, 70000},
23 {9000, 80000},
24 {10125, 90000},
25 {11250, 100000},
26 {12375, 110000},
27 {13500, 120000},
28 {14625, 130000},
29 {15750, 140000},
30 {16875, 150000} /* 15 ms */
31};
HALP_ROLLOVER HalpRolloverTable[15]
Definition: clock.c:15