• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* power_features.h -- check for POWER CPU features
2  * Copyright (C) 2020 Matheus Castanho <msc@linux.ibm.com>, IBM
3  * Copyright (C) 2021 Mika T. Lindqvist <postmaster@raasu.org>
4  * For conditions of distribution and use, see copyright notice in zlib.h
5  */
6 
7 #ifndef POWER_H_
8 #define POWER_H_
9 
10 extern int power_cpu_has_altivec;
11 extern int power_cpu_has_arch_2_07;
12 extern int power_cpu_has_arch_3_00;
13 
14 void Z_INTERNAL power_check_features(void);
15 
16 #endif /* POWER_H_ */
17