Update: Translations from eints
[openttd-github.git] / src / cpu.h
blob116ec8b0ea6780f5b87151a25eb44d2d1ab0e191
1 /*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
8 /** @file cpu.h Functions related to CPU specific instructions. */
10 #ifndef CPU_H
11 #define CPU_H
13 /**
14 * Get the CPUID information from the CPU.
15 * @param info The retrieved info. All zeros on architectures without CPUID.
16 * @param type The information this instruction should retrieve.
18 void ottd_cpuid(int info[4], int type);
20 /**
21 * Check whether the current CPU has the given flag.
22 * @param type The type to be passing to cpuid (usually 1).
23 * @param index The index in the returned info array.
24 * @param bit The bit index that needs to be set.
25 * @return The value of the bit, or false when there is no CPUID or the type is not available.
27 bool HasCPUIDFlag(uint type, uint index, uint bit);
29 #endif /* CPU_H */