Files
ci-libretro-fceumm/src/fds_apu.h

15 lines
390 B
C
Raw Normal View History

#ifndef FDS_APU_H
#define FDS_APU_H
2022-09-05 01:28:42 +02:00
#include "fceu-types.h"
void FDSSoundReset(void);
void FDSSoundStateAdd(void);
2022-09-05 01:28:42 +02:00
/* Used for FDS conversion-based mappers to allow access to FDS APU registers */
void FDSSoundPower(void);
2022-09-05 01:28:42 +02:00
uint8 FDSSoundRead(uint32 A); /* $4040-$407F, $4090-$4092 */
void FDSSoundWrite(uint32 A, uint8 V); /* $4040-$407F, $4080-$408A */
2022-09-05 01:28:42 +02:00
#endif /* FDS_APU_H */