37 lines
287 B
C
37 lines
287 B
C
|
|
||
|
|
||
|
#ifndef __SOUND_H__
|
||
|
#define __SOUND_H__
|
||
|
|
||
|
|
||
|
struct sndchan
|
||
|
{
|
||
|
int on;
|
||
|
unsigned pos;
|
||
|
int cnt, encnt, swcnt;
|
||
|
int len, enlen, swlen;
|
||
|
int swfreq;
|
||
|
int freq;
|
||
|
int envol, endir;
|
||
|
};
|
||
|
|
||
|
|
||
|
struct snd
|
||
|
{
|
||
|
int rate;
|
||
|
struct sndchan ch[4];
|
||
|
byte wave[16];
|
||
|
};
|
||
|
|
||
|
|
||
|
extern struct snd snd;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|