Move CPU tables to separate file.

This commit is contained in:
SarahW 2019-02-08 21:34:02 +00:00
commit 84622584e2
4 changed files with 432 additions and 429 deletions

View file

@ -123,7 +123,7 @@ extern int cpu_cyrix_alignment;
#define CPU_FEATURE_3DNOW (1 << 6)
extern uint32_t cpu_features;
static int cpu_has_feature(int feature)
static inline int cpu_has_feature(int feature)
{
return cpu_features & feature;
}