diff options
author | Damien Zammit <damien@zamaudio.com> | 2023-02-26 06:36:04 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-26 10:01:10 +0100 |
commit | 304c0ba74a5eb2979808af44937153a65f108dc9 (patch) | |
tree | 639e94ee369ac4d9c46387906b104578c1e761fb /i386 | |
parent | d268bf0e3d31e1df96d4972cd0130b176c4d5165 (diff) | |
download | gnumach-304c0ba74a5eb2979808af44937153a65f108dc9.tar.gz gnumach-304c0ba74a5eb2979808af44937153a65f108dc9.tar.bz2 gnumach-304c0ba74a5eb2979808af44937153a65f108dc9.zip |
pit: Use corrected clock frequency
All PC compatibles operate the PIT at a clock rate of (105/88) MHz
Message-Id: <20230226063555.66284-1-damien@zamaudio.com>
Diffstat (limited to 'i386')
-rw-r--r-- | i386/i386/pit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/i386/pit.h b/i386/i386/pit.h index b14c4c84..49e1051b 100644 --- a/i386/i386/pit.h +++ b/i386/i386/pit.h @@ -86,7 +86,7 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * (defined in param.h) */ #if defined(AT386) || defined(ATX86_64) -#define CLKNUM 1193167 +#define CLKNUM 1193182 #endif /* AT386 */ extern void clkstart(void); |