mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-24 01:09:51 +00:00
17 lines
394 B
C
17 lines
394 B
C
#ifndef __MDFN_PSX_GTE_H
|
|
#define __MDFN_PSX_GTE_H
|
|
|
|
void GTE_Init(void);
|
|
void GTE_Power(void);
|
|
int GTE_StateAction(StateMem *sm, int load, int data_only);
|
|
|
|
int32 GTE_Instruction(uint32_t instr);
|
|
|
|
void GTE_WriteCR(unsigned int which, uint32_t value);
|
|
void GTE_WriteDR(unsigned int which, uint32_t value);
|
|
|
|
uint32_t GTE_ReadCR(unsigned int which);
|
|
uint32_t GTE_ReadDR(unsigned int which);
|
|
|
|
#endif
|