2022-02-18 19:42:21 -05:00
|
|
|
#ifndef SOUND_RESID_H
|
2022-02-22 20:28:56 -05:00
|
|
|
#define SOUND_RESID_H
|
2022-02-18 19:42:21 -05:00
|
|
|
|
2016-06-26 00:34:39 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
2022-02-22 20:28:56 -05:00
|
|
|
void *sid_init();
|
|
|
|
|
void sid_close(void *p);
|
|
|
|
|
void sid_reset(void *p);
|
|
|
|
|
uint8_t sid_read(uint16_t addr, void *p);
|
|
|
|
|
void sid_write(uint16_t addr, uint8_t val, void *p);
|
|
|
|
|
void sid_fillbuf(int16_t *buf, int len, void *p);
|
2016-06-26 00:34:39 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2022-02-18 19:42:21 -05:00
|
|
|
|
|
|
|
|
#endif /*SOUND_RESID_H*/
|