mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
9 lines
219 B
C
9 lines
219 B
C
#ifndef SN76496_H
|
|
#define SN76496_H
|
|
|
|
void SN76496Write(int data);
|
|
void SN76496Update(short *buffer,int length,int stereo);
|
|
void SN76496Config(int panning);
|
|
int SN76496_init(int clock,int sample_rate);
|
|
|
|
#endif
|