xref: /haiku/headers/private/kernel/boot/arch/x86/arch_cpu.h (revision 15fb7d88e971c4d6c787c6a3a5c159afb1ebf77b)
1 /*
2  * Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef BOOT_ARCH_CPU_H
6 #define BOOT_ARCH_CPU_H
7 
8 
9 #include <SupportDefs.h>
10 
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 extern void cpu_init(void);
17 
18 void calculate_cpu_conversion_factor(uint8 channel);
19 
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif	/* BOOT_ARCH_CPU_H */
26