mirror of
https://github.com/zeldaret/oot
synced 2026-05-26 07:39:01 -04:00
18d73ff374
* Document CIC6105 * Changes, AUDIOMGR_DEBUG_LEVEL -> AUDIOMGR_ACTIVITY_LEVEL
17 lines
341 B
C
17 lines
341 B
C
#ifndef CIC6105_H
|
|
#define CIC6105_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
extern u32 gCICBootMagic0;
|
|
|
|
#define CIC_BOOT_MAGIC0_IS_CORRECT() (gCICBootMagic0 == 0xAD090010)
|
|
|
|
void CIC6105_EnableAudio(void);
|
|
void CIC6105_AddFaultClient(void);
|
|
void CIC6105_RemoveFaultClient(void);
|
|
void CIC6105_RunBootTask(void);
|
|
void CIC6105_SaveBootMagicValues(void);
|
|
|
|
#endif
|