Files
86Box/src/include/86box/snd_resid.h

18 lines
384 B
C
Raw Normal View History

2022-02-18 19:42:21 -05:00
#ifndef SOUND_RESID_H
#define SOUND_RESID_H
2022-02-18 19:42:21 -05:00
#ifdef __cplusplus
extern "C" {
#endif
void *sid_init(void);
2023-08-21 20:26:11 -04:00
void sid_close(void *priv);
void sid_reset(void *priv);
uint8_t sid_read(uint16_t addr, void *priv);
void sid_write(uint16_t addr, uint8_t val, void *priv);
void sid_fillbuf(int16_t *buf, int len, void *priv);
#ifdef __cplusplus
}
#endif
2022-02-18 19:42:21 -05:00
#endif /*SOUND_RESID_H*/