/*1SN76489 emulation2by Maxim in 2001 and 20023*/45#ifndef _SN76489_H_6#define _SN76489_H_78#include "blip_buf.h"910#define SN_DISCRETE 011#define SN_INTEGRATED 11213/* Function prototypes */14extern void SN76489_Init(blip_t* left, blip_t* right, int type);15extern void SN76489_Reset(void);16extern void SN76489_Config(unsigned int clocks, int preAmp, int boostNoise, int stereo);17extern void SN76489_Write(unsigned int clocks, unsigned int data);18extern void SN76489_Update(unsigned int cycles);19extern void *SN76489_GetContextPtr(void);20extern int SN76489_GetContextSize(void);2122#endif /* _SN76489_H_ */232425