2004-06-17 05:02:40 +04:00
|
|
|
/*
|
2005-04-10 18:49:09 +04:00
|
|
|
* Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2019-12-04 14:52:31 +03:00
|
|
|
#ifndef BOOT_ARCH_CPU_H
|
|
|
|
#define BOOT_ARCH_CPU_H
|
2004-06-17 05:02:40 +04:00
|
|
|
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2019-12-04 14:52:31 +03:00
|
|
|
void calculate_cpu_conversion_factor(uint8 channel);
|
|
|
|
|
|
|
|
|
2004-06-17 05:02:40 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-02-20 19:20:54 +03:00
|
|
|
#include <boot/vfs.h>
|
|
|
|
|
|
|
|
void ucode_load(BootVolume& volume);
|
|
|
|
|
|
|
|
|
2019-12-04 14:52:31 +03:00
|
|
|
#endif /* BOOT_ARCH_CPU_H */
|