1 #ifndef __PCFX_HUC6273_H 2 #define __PCFX_HUC6273_H 3 4 bool HuC6273_Init(void); 5 6 uint8 HuC6273_Read8(uint32 A); 7 uint16 HuC6273_Read16(uint32 A); 8 void HuC6273_Write16(uint32 A, uint16 V); 9 void HuC6273_Write8(uint32 A, uint8 V); 10 void HuC6273_Reset(void); 11 12 13 #endif 14