mirror of
https://github.com/ShadauxCat/CATSFC.git
synced 2025-04-02 10:41:47 -04:00
21 lines
350 B
C
21 lines
350 B
C
#ifndef _DS2_CPUCLOCK_H__
|
|
#define _DS2_CPUCLOCK_H__
|
|
|
|
|
|
#define CPU_MAX_LEVEL_EX 18
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int ds2_getCPUClock(void);
|
|
extern int ds2_setCPULevel(unsigned int level);
|
|
extern void ds2_udelay(unsigned int usec);
|
|
extern void ds2_mdelay(unsigned int msec);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //__DS2_CPUCLOCK_H__
|