mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 20:35:32 -07:00
A lot of clean ups from waltje; Start of a directory structure for the code, thanks to waltje.
13 lines
328 B
C
13 lines
328 B
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
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);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|