1 /* 2 * PROJECT: ReactOS Hardware Abstraction Layer 3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 * PURPOSE: PIT rollover table 5 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) 6 * Timo Kreuzer (timo.kreuzer@reactos.org) 7 */ 8 9 /* INCLUDES ******************************************************************/ 10 11 #include <hal.h> 12 13 /* GLOBALS *******************************************************************/ 14 15 HALP_ROLLOVER HalpRolloverTable[15] = 16 { 17 {1197, 10032}, /* 1 ms */ 18 {2394, 20064}, 19 {3591, 30096}, 20 {4767, 39952}, 21 {5964, 49984}, 22 {7161, 60016}, 23 {8358, 70048}, 24 {9555, 80080}, 25 {10731, 89936}, 26 {11949, 100144}, 27 {13125, 110000}, 28 {14322, 120032}, 29 {15519, 130064}, 30 {16695, 139920}, 31 {17892, 149952} /* 15 ms */ 32 }; 33