mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 12:59:44 +00:00
a017b8f228
* IO_READ * CIC6105.h * CIC defines * sRomInfoFaultClient * CIC6105_Init * CIC6105_Destroy * hopefully final cleanup * review * bss * bss
22 lines
437 B
C
22 lines
437 B
C
#ifndef CIC6105_H
|
|
#define CIC6105_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
// IPL3 puts values in those addresses as part of the anti-piracy checks
|
|
#define CIC_ADDRESS_1 0x002FB1F4
|
|
#define CIC_ADDRESS_2 0x002FE1C0
|
|
|
|
|
|
void CIC6105_Noop1(void);
|
|
void CIC6105_Noop2(void);
|
|
void CIC6105_PrintRomInfo(void);
|
|
void CIC6105_AddRomInfoFaultPage(void);
|
|
void CIC6105_Destroy(void);
|
|
void CIC6105_Init(void);
|
|
|
|
extern s32 gCICAddr1Val;
|
|
extern s32 gCICAddr2Val;
|
|
|
|
#endif
|