X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2F16_snd.h;h=3242e81418d51d17f4fd7dc41486b6f3dc1e8ef8;hb=19d97c4277378f20c6c756981f4123cdc6cbb32b;hp=6abbe5d33895df512699b7d9d74549b948e02cf5;hpb=46bf49691f3f282718028959eb06466b2c7f3cbc;p=16.git diff --git a/src/lib/16_snd.h b/src/lib/16_snd.h old mode 100644 new mode 100755 index 6abbe5d3..3242e814 --- a/src/lib/16_snd.h +++ b/src/lib/16_snd.h @@ -25,4 +25,35 @@ #include "src/lib/16_head.h" -#endif /*__16_SND_H_*/ \ No newline at end of file +#define MIN_REGISTER 0x01 +#define MAX_REGISTER 0xF5 +#define ADLIB_FM_ADDRESS 0x388 /* adlib address/status register */ +#define ADLIB_FM_DATA 0x389 /* adlib data register */ + +/* +* FM Instrument definition for .SBI files - SoundBlaster instrument +* - these are the important parts - we will skip the header, but since +* I am not sure where it starts and ends so I have had to guess. +* However it SEEMS! to work. Each array has two values, one for +* each operator. +*/ +typedef struct{ + byte SoundCharacteristic[2]; /* modulator frequency multiple... */ + byte Level[2]; /* modulator frequency level... */ + byte AttackDecay[2]; /* modulator attack/decay... */ + byte SustainRelease[2]; /* modulator sustain/release... */ + byte WaveSelect[2]; /* output waveform distortion */ + byte Feedback; /* feedback algorithm and strength */ +} FMInstrument; + + +void opl2out(word reg, word data); +void opl3out(word reg, word data); +void opl3exp(word data); + +void FMReset(void/*int percusiveMode*/); +void FMKeyOff(int voice); +void FMKeyOn(int voice, int freq, int octave); +void FMSetVoice(int voiceNum, FMInstrument *ins); + +#endif /*__16_SND_H_*/