xref: /haiku/headers/private/kernel/boot/arch/x86/arch_cpu.h (revision e1c4049fed1047bdb957b0529e1921e97ef94770)
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 #include <boot/vfs.h>
11 
12 #include "../../../arch/x86/arch_cpuasm.h"
13 
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 
20 void determine_cpu_conversion_factor(uint8 channel);
21 status_t boot_arch_cpu_init(void);
22 void arch_ucode_load(BootVolume& volume);
23 
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 
29 
30 #endif	/* BOOT_ARCH_CPU_H */
31