mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2024-11-23 16:00:08 +00:00
25 lines
470 B
C++
25 lines
470 B
C++
#ifndef __MDFN_PSX_DMA_H
|
|
#define __MDFN_PSX_DMA_H
|
|
|
|
namespace MDFN_IEN_PSX
|
|
{
|
|
|
|
bool DMA_GPUWriteActive(void);
|
|
|
|
pscpu_timestamp_t DMA_Update(const pscpu_timestamp_t timestamp);
|
|
void DMA_Write(const pscpu_timestamp_t timestamp, uint32 A, uint32 V);
|
|
uint32 DMA_Read(const pscpu_timestamp_t timestamp, uint32 A);
|
|
|
|
void DMA_ResetTS(void);
|
|
|
|
void DMA_Power(void);
|
|
|
|
void DMA_Init(void);
|
|
void DMA_Kill(void);
|
|
|
|
int DMA_StateAction(StateMem *sm, int load, int data_only);
|
|
|
|
}
|
|
|
|
#endif
|