NINTV-DS/arm9/source/emucore/AY38914_Channel.h
2021-09-02 17:32:31 -04:00

26 lines
439 B
C

#ifndef AY38914__CHANNEL_H
#define AY38914__CHANNEL_H
#include "types.h"
struct Channel_t
{
INT32 period;
INT32 periodValue;
INT32 volume;
INT32 toneCounter;
BOOL tone;
BOOL envelope;
BOOL toneDisabled;
BOOL noiseDisabled;
BOOL isDirty;
INT32 cachedSample;
};
extern struct Channel_t channel0;
extern struct Channel_t channel1;
extern struct Channel_t channel2;
#endif