/* * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de. * Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. * Distributed under the terms of the MIT License. */ #include #include #include #include #ifdef __x86_64__ # include #endif void cpu_init() { gKernelArgs.num_cpus = 1; // this will eventually be corrected later on } extern "C" void platform_load_ucode(BootVolume& volume) { #ifdef __x86_64__ ucode_load(volume); #endif }