mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2024-11-24 00:10:14 +00:00
14 lines
231 B
C++
14 lines
231 B
C++
#ifndef __MDFN_PSX_SIO_H
|
|
#define __MDFN_PSX_SIO_H
|
|
|
|
namespace MDFN_IEN_PSX
|
|
{
|
|
|
|
void SIO_Write(pscpu_timestamp_t timestamp, uint32 A, uint32 V);
|
|
uint32 SIO_Read(pscpu_timestamp_t timestamp, uint32 A);
|
|
void SIO_Power(void);
|
|
|
|
}
|
|
|
|
#endif
|