mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-21 14:49:36 +02:00
initial commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#ifndef VOTRAX_H_
|
||||
#define VOTRAX_H_
|
||||
|
||||
#include "atari.h"
|
||||
|
||||
typedef void (*Votrax_BusyCallBack)(int);
|
||||
|
||||
struct Votrax_interface
|
||||
{
|
||||
int num; /* total number of chips */
|
||||
Votrax_BusyCallBack BusyCallback; /* callback function when busy signal changes */
|
||||
};
|
||||
|
||||
int Votrax_Start(void *sound_interface);
|
||||
void Votrax_Stop(void);
|
||||
|
||||
void Votrax_PutByte(UBYTE data);
|
||||
UBYTE Votrax_GetStatus(void);
|
||||
|
||||
void Votrax_Update(int num, SWORD *buffer, int length);
|
||||
int Votrax_Samples(int currentP, int nextP, int cursamples);
|
||||
|
||||
#endif /* VOTRAX_H_ */
|
||||
Reference in New Issue
Block a user