mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2025-01-26 01:51:15 +01:00
added experimental resampling (Secret Rabbit Code)
This commit is contained in:
parent
19cede04f6
commit
8a2d4a03ff
@ -34,7 +34,7 @@ LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
|||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
# any extra libraries we wish to link with the project
|
# any extra libraries we wish to link with the project
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
LIBS := -lfat -lwiiuse -lbte -logc -lm -lz
|
LIBS := -lfat -lwiiuse -lbte -logc -lm -lz -lsamplerate
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
# list of directories containing libraries, this must be the top level containing
|
# list of directories containing libraries, this must be the top level containing
|
||||||
|
@ -120,7 +120,7 @@
|
|||||||
|
|
||||||
/* globals */
|
/* globals */
|
||||||
#define FREQ_SH 16 /* 16.16 fixed point (frequency calculations) */
|
#define FREQ_SH 16 /* 16.16 fixed point (frequency calculations) */
|
||||||
#define EG_SH 16 /* 16.16 fixed point (envelope generator timing) */
|
#define EG_SH 16 /* 16.16 fixed point (envelope generator timing) */
|
||||||
#define LFO_SH 24 /* 8.24 fixed point (LFO calculations) */
|
#define LFO_SH 24 /* 8.24 fixed point (LFO calculations) */
|
||||||
#define TIMER_SH 16 /* 16.16 fixed point (timers calculations) */
|
#define TIMER_SH 16 /* 16.16 fixed point (timers calculations) */
|
||||||
|
|
||||||
@ -146,8 +146,8 @@
|
|||||||
#define TL_RES_LEN (256) /* 8 bits addressing (real chip) */
|
#define TL_RES_LEN (256) /* 8 bits addressing (real chip) */
|
||||||
|
|
||||||
|
|
||||||
#define MAXOUT (+16383)
|
#define MAXOUT (+32767)
|
||||||
#define MINOUT (-16384)
|
#define MINOUT (-32768)
|
||||||
|
|
||||||
|
|
||||||
/* TL_TAB_LEN is calculated as:
|
/* TL_TAB_LEN is calculated as:
|
||||||
@ -550,8 +550,8 @@ typedef struct
|
|||||||
/* local time tables */
|
/* local time tables */
|
||||||
INT32 dt_tab[8][32];/* DeTune table */
|
INT32 dt_tab[8][32];/* DeTune table */
|
||||||
|
|
||||||
UINT32 Inter_Cnt; // Interpolation Counter
|
// UINT32 Inter_Cnt; // Interpolation Counter
|
||||||
UINT32 Inter_Step; // Interpolation Step
|
// UINT32 Inter_Step; // Interpolation Step
|
||||||
|
|
||||||
} FM_ST;
|
} FM_ST;
|
||||||
|
|
||||||
@ -1456,25 +1456,30 @@ static void OPNSetPres(int pres)
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
/* frequency base */
|
|
||||||
ym2612.OPN.ST.freqbase = ((double) ym2612.OPN.ST.clock / (double) ym2612.OPN.ST.rate) / ((double) pres);
|
|
||||||
|
|
||||||
/* timer increment in usecs (timers are incremented after each updated samples) */
|
|
||||||
ym2612.OPN.ST.TimerBase = 1000000.0 / (double)ym2612.OPN.ST.rate;
|
|
||||||
|
|
||||||
if (config.hq_fm)
|
if (config.hq_fm)
|
||||||
{
|
{
|
||||||
ym2612.OPN.ST.Inter_Step = (unsigned int) ((1.0 / ym2612.OPN.ST.freqbase) * (double) (0x4000));
|
//ym2612.OPN.ST.Inter_Step = (unsigned int) ((1.0 / ym2612.OPN.ST.freqbase) * (double) (0x4000));
|
||||||
ym2612.OPN.ST.Inter_Cnt = 0;
|
//ym2612.OPN.ST.Inter_Cnt = 0;
|
||||||
ym2612.OPN.ST.freqbase = 1.0;
|
//ym2612.OPN.ST.freqbase = 1.0;
|
||||||
}
|
ym2612.OPN.ST.rate = ym2612.OPN.ST.clock / pres;
|
||||||
else
|
|
||||||
{
|
|
||||||
ym2612.OPN.ST.Inter_Step = 0x4000;
|
|
||||||
ym2612.OPN.ST.Inter_Cnt = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
ym2612.OPN.eg_timer_add = (UINT32)((1<<EG_SH) * ym2612.OPN.ST.freqbase);
|
}
|
||||||
|
//else
|
||||||
|
//{
|
||||||
|
//ym2612.OPN.ST.Inter_Step = 0x4000;
|
||||||
|
//ym2612.OPN.ST.Inter_Cnt = 0;
|
||||||
|
//}
|
||||||
|
|
||||||
|
|
||||||
|
/* frequency base */
|
||||||
|
ym2612.OPN.ST.freqbase = ((double) ym2612.OPN.ST.clock / (double) ym2612.OPN.ST.rate) / ((double) pres);
|
||||||
|
|
||||||
|
|
||||||
|
/* timer increment in usecs (timers are incremented after each updated samples) */
|
||||||
|
ym2612.OPN.ST.TimerBase = 1000000.0 / (double)ym2612.OPN.ST.rate;
|
||||||
|
|
||||||
|
|
||||||
|
ym2612.OPN.eg_timer_add = (UINT32)((1<<EG_SH) * ym2612.OPN.ST.freqbase);
|
||||||
//ym2612.OPN.eg_timer_overflow = ( 3 ) * (1<<EG_SH);
|
//ym2612.OPN.eg_timer_overflow = ( 3 ) * (1<<EG_SH);
|
||||||
ym2612.OPN.eg_timer_overflow = (351 * (1<<EG_SH)) / 144; /* correct frequency (Nemesis: tested on real HW) */
|
ym2612.OPN.eg_timer_overflow = (351 * (1<<EG_SH)) / 144; /* correct frequency (Nemesis: tested on real HW) */
|
||||||
|
|
||||||
@ -1748,7 +1753,7 @@ static void OPNWriteReg(int r, int v)
|
|||||||
|
|
||||||
/* Generate 32bits samples for ym2612 */
|
/* Generate 32bits samples for ym2612 */
|
||||||
static long dac;
|
static long dac;
|
||||||
int int_cnt; // Interpolation calculation
|
//int int_cnt; // Interpolation calculation
|
||||||
|
|
||||||
void YM2612UpdateOne(int **buffer, int length)
|
void YM2612UpdateOne(int **buffer, int length)
|
||||||
{
|
{
|
||||||
@ -1781,7 +1786,7 @@ void YM2612UpdateOne(int **buffer, int length)
|
|||||||
refresh_fc_eg_chan(&ym2612.CH[4]);
|
refresh_fc_eg_chan(&ym2612.CH[4]);
|
||||||
refresh_fc_eg_chan(&ym2612.CH[5]);
|
refresh_fc_eg_chan(&ym2612.CH[5]);
|
||||||
|
|
||||||
int_cnt = ym2612.OPN.ST.Inter_Cnt;
|
//int_cnt = ym2612.OPN.ST.Inter_Cnt;
|
||||||
|
|
||||||
/* buffering */
|
/* buffering */
|
||||||
for(i=0; i < length ; i++)
|
for(i=0; i < length ; i++)
|
||||||
@ -1829,6 +1834,7 @@ void YM2612UpdateOne(int **buffer, int length)
|
|||||||
}
|
}
|
||||||
else chan_calc(&ym2612.CH[5]);
|
else chan_calc(&ym2612.CH[5]);
|
||||||
|
|
||||||
|
#if 0
|
||||||
if (config.hq_fm)
|
if (config.hq_fm)
|
||||||
{
|
{
|
||||||
if ((int_cnt += ym2612.OPN.ST.Inter_Step) & 0x04000)
|
if ((int_cnt += ym2612.OPN.ST.Inter_Step) & 0x04000)
|
||||||
@ -1875,6 +1881,7 @@ void YM2612UpdateOne(int **buffer, int length)
|
|||||||
old_out_fm[5] = out_fm[5];
|
old_out_fm[5] = out_fm[5];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
lt = ((out_fm[0]>>0) & ym2612.OPN.pan[0]);
|
lt = ((out_fm[0]>>0) & ym2612.OPN.pan[0]);
|
||||||
rt = ((out_fm[0]>>0) & ym2612.OPN.pan[1]);
|
rt = ((out_fm[0]>>0) & ym2612.OPN.pan[1]);
|
||||||
@ -1904,7 +1911,7 @@ void YM2612UpdateOne(int **buffer, int length)
|
|||||||
|
|
||||||
INTERNAL_TIMER_B(length);
|
INTERNAL_TIMER_B(length);
|
||||||
|
|
||||||
ym2612.OPN.ST.Inter_Cnt = int_cnt;
|
//ym2612.OPN.ST.Inter_Cnt = int_cnt;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
****************************************************************************************/
|
****************************************************************************************/
|
||||||
|
|
||||||
#include "shared.h"
|
#include "shared.h"
|
||||||
|
#include "samplerate.h"
|
||||||
|
|
||||||
/* generic functions */
|
/* generic functions */
|
||||||
int (*_YM2612_Write)(unsigned char adr, unsigned char data);
|
int (*_YM2612_Write)(unsigned char adr, unsigned char data);
|
||||||
@ -29,19 +30,32 @@ int (*_YM2612_Read)(void);
|
|||||||
void (*_YM2612_Update)(int **buf, int length);
|
void (*_YM2612_Update)(int **buf, int length);
|
||||||
int (*_YM2612_Reset)(void);
|
int (*_YM2612_Reset)(void);
|
||||||
|
|
||||||
static double m68cycles_per_sample;
|
static double m68cycles_per_sample[2];
|
||||||
static double z80cycles_per_sample;
|
static double z80cycles_per_sample[2];
|
||||||
|
|
||||||
|
static float fm_buffer_48kHz[960*2];
|
||||||
|
static float fm_buffer_53kHz[1060*2];
|
||||||
|
|
||||||
|
static int fm_buffer[2][1060];
|
||||||
|
|
||||||
|
static SRC_DATA data;
|
||||||
|
|
||||||
/* YM2612 data */
|
/* YM2612 data */
|
||||||
int fm_reg[2][0x100]; /* Register arrays (2x256) */
|
int fm_reg[2][0x100]; /* Register arrays (2x256) */
|
||||||
double fm_timera_tab[0x400]; /* Precalculated timer A values (in usecs) */
|
double fm_timera_tab[0x400]; /* Precalculated timer A values (in usecs) */
|
||||||
double fm_timerb_tab[0x100]; /* Precalculated timer B values (in usecs) */
|
double fm_timerb_tab[0x100]; /* Precalculated timer B values (in usecs) */
|
||||||
|
|
||||||
/* return the number of samples that should have been rendered so far */
|
/* return the number of samples that should have been rendered so far */
|
||||||
static inline uint32 sound_sample_cnt(uint8 is_z80)
|
static inline uint32 fm_sample_cnt(uint8 is_z80)
|
||||||
{
|
{
|
||||||
if (is_z80) return (uint32) ((double)(count_z80 + current_z80 - z80_ICount) / z80cycles_per_sample);
|
if (is_z80) return (uint32) ((double)(count_z80 + current_z80 - z80_ICount) / z80cycles_per_sample[0]);
|
||||||
else return (uint32) ((double) count_m68k / m68cycles_per_sample);
|
else return (uint32) ((double) count_m68k / m68cycles_per_sample[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline uint32 psg_sample_cnt(uint8 is_z80)
|
||||||
|
{
|
||||||
|
if (is_z80) return (uint32) ((double)(count_z80 + current_z80 - z80_ICount) / z80cycles_per_sample[1]);
|
||||||
|
else return (uint32) ((double) count_m68k / m68cycles_per_sample[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* update FM samples */
|
/* update FM samples */
|
||||||
@ -49,10 +63,19 @@ static inline void fm_update()
|
|||||||
{
|
{
|
||||||
if(snd.fm.curStage - snd.fm.lastStage > 1)
|
if(snd.fm.curStage - snd.fm.lastStage > 1)
|
||||||
{
|
{
|
||||||
//error("%d(%d): FM update (%d) %d from %d samples (%08x)\n", v_counter, count_z80 + current_z80 - z80_ICount, cpu, snd.fm.curStage , snd.fm.lastStage, m68k_get_reg (NULL, M68K_REG_PC));
|
int *tempBuffer[2];
|
||||||
int *tempBuffer[2];
|
|
||||||
tempBuffer[0] = snd.fm.buffer[0] + snd.fm.lastStage;
|
if (config.hq_fm && !config.fm_core)
|
||||||
tempBuffer[1] = snd.fm.buffer[1] + snd.fm.lastStage;
|
{
|
||||||
|
tempBuffer[0] = fm_buffer[0] + snd.fm.lastStage;
|
||||||
|
tempBuffer[1] = fm_buffer[1] + snd.fm.lastStage;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
tempBuffer[0] = snd.fm.buffer[0] + snd.fm.lastStage;
|
||||||
|
tempBuffer[1] = snd.fm.buffer[1] + snd.fm.lastStage;
|
||||||
|
}
|
||||||
|
|
||||||
_YM2612_Update(tempBuffer, snd.fm.curStage - snd.fm.lastStage);
|
_YM2612_Update(tempBuffer, snd.fm.curStage - snd.fm.lastStage);
|
||||||
snd.fm.lastStage = snd.fm.curStage;
|
snd.fm.lastStage = snd.fm.curStage;
|
||||||
}
|
}
|
||||||
@ -83,9 +106,28 @@ void sound_init(int rate)
|
|||||||
/* Formula is "time(us) = 16 * (256 - B) * 144 * 1000000 / clock" */
|
/* Formula is "time(us) = 16 * (256 - B) * 144 * 1000000 / clock" */
|
||||||
for(i = 0; i < 256; i += 1) fm_timerb_tab[i] = ((double)((256 - i) * 16 * 144) * 1000000.0 / vclk);
|
for(i = 0; i < 256; i += 1) fm_timerb_tab[i] = ((double)((256 - i) * 16 * 144) * 1000000.0 / vclk);
|
||||||
|
|
||||||
/* Cycle-Accurate sample generation */
|
/* cycle-accurate FM samples */
|
||||||
m68cycles_per_sample = ((double)m68cycles_per_line * (double)lines_per_frame) / (double) (rate / vdp_rate);
|
if (config.hq_fm && !config.fm_core)
|
||||||
z80cycles_per_sample = ((double)z80cycles_per_line * (double)lines_per_frame) / (double) (rate / vdp_rate);
|
{
|
||||||
|
m68cycles_per_sample[0] = 144;
|
||||||
|
z80cycles_per_sample[0] = (144 * 7) / 15;
|
||||||
|
|
||||||
|
/* set samplerate converter data */
|
||||||
|
data.data_in = fm_buffer_53kHz;
|
||||||
|
data.data_out = fm_buffer_48kHz;
|
||||||
|
data.input_frames = vdp_pal ? 1060 : 888;
|
||||||
|
data.output_frames = vdp_pal ? 960 : 800;
|
||||||
|
data.src_ratio = 48000.0 / (vdp_pal ? 52781.0 : 53267.0);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m68cycles_per_sample[0] = ((double)m68cycles_per_line * (double)lines_per_frame) / (double) (rate / vdp_rate);
|
||||||
|
z80cycles_per_sample[0] = ((double)z80cycles_per_line * (double)lines_per_frame) / (double) (rate / vdp_rate);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* cycle-accurate PSG samples */
|
||||||
|
m68cycles_per_sample[1] = ((double)m68cycles_per_line * (double)lines_per_frame) / (double) (rate / vdp_rate);
|
||||||
|
z80cycles_per_sample[1] = ((double)z80cycles_per_line * (double)lines_per_frame) / (double) (rate / vdp_rate);
|
||||||
|
|
||||||
/* initialize sound chips */
|
/* initialize sound chips */
|
||||||
SN76489_Init(0, (int)zclk, rate);
|
SN76489_Init(0, (int)zclk, rate);
|
||||||
@ -119,7 +161,59 @@ void sound_update(void)
|
|||||||
fm_update();
|
fm_update();
|
||||||
psg_update();
|
psg_update();
|
||||||
|
|
||||||
/* reset samples count */
|
/* Resampling */
|
||||||
|
if (config.hq_fm && !config.fm_core)
|
||||||
|
{
|
||||||
|
double scaled_value ;
|
||||||
|
int len = vdp_pal ? 1060 : 888;
|
||||||
|
|
||||||
|
/* this is basically libsamplerate "src_int_to_float_array" function, adapted to interlace samples */
|
||||||
|
while (len)
|
||||||
|
{
|
||||||
|
len -- ;
|
||||||
|
fm_buffer_53kHz [len*2] = (float) (fm_buffer[0] [len] / (8.0 * 0x10000000)) ;
|
||||||
|
fm_buffer_53kHz [len*2 + 1] = (float) (fm_buffer[1] [len] / (8.0 * 0x10000000)) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* samplerate conversion */
|
||||||
|
src_simple (&data, SRC_SINC_FASTEST, 2);
|
||||||
|
|
||||||
|
/* this is basically libsamplerate "src_float_to_int_array" function, adapted to interlace samples */
|
||||||
|
len = vdp_pal ? 960 : 800;
|
||||||
|
while (len)
|
||||||
|
{
|
||||||
|
len -- ;
|
||||||
|
scaled_value = fm_buffer_48kHz [len*2] * (8.0 * 0x10000000);
|
||||||
|
if (scaled_value >= (1.0 * 0x7FFFFFFF))
|
||||||
|
{
|
||||||
|
snd.fm.buffer[0][len] = 0x7fffffff;
|
||||||
|
}
|
||||||
|
else if (scaled_value <= (-8.0 * 0x10000000))
|
||||||
|
{
|
||||||
|
snd.fm.buffer[0][len] = -1 - 0x7fffffff;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
snd.fm.buffer[0][len] = (long)scaled_value;
|
||||||
|
}
|
||||||
|
|
||||||
|
scaled_value = fm_buffer_48kHz [len*2+1] * (8.0 * 0x10000000);
|
||||||
|
if (scaled_value >= (1.0 * 0x7FFFFFFF))
|
||||||
|
{
|
||||||
|
snd.fm.buffer[1][len] = 0x7fffffff;
|
||||||
|
}
|
||||||
|
else if (scaled_value <= (-8.0 * 0x10000000))
|
||||||
|
{
|
||||||
|
snd.fm.buffer[1][len] = -1 - 0x7fffffff;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
snd.fm.buffer[1][len] = (long)scaled_value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* reset samples count */
|
||||||
snd.fm.curStage = 0;
|
snd.fm.curStage = 0;
|
||||||
snd.fm.lastStage = 0;
|
snd.fm.lastStage = 0;
|
||||||
snd.psg.curStage = 0;
|
snd.psg.curStage = 0;
|
||||||
@ -147,7 +241,7 @@ void fm_restore(void)
|
|||||||
/* write FM chip */
|
/* write FM chip */
|
||||||
void fm_write(unsigned int cpu, unsigned int address, unsigned int data)
|
void fm_write(unsigned int cpu, unsigned int address, unsigned int data)
|
||||||
{
|
{
|
||||||
snd.fm.curStage = sound_sample_cnt(cpu);
|
snd.fm.curStage = fm_sample_cnt(cpu);
|
||||||
fm_update();
|
fm_update();
|
||||||
_YM2612_Write(address & 3, data);
|
_YM2612_Write(address & 3, data);
|
||||||
}
|
}
|
||||||
@ -155,7 +249,7 @@ void fm_write(unsigned int cpu, unsigned int address, unsigned int data)
|
|||||||
/* read FM status */
|
/* read FM status */
|
||||||
unsigned int fm_read(unsigned int cpu, unsigned int address)
|
unsigned int fm_read(unsigned int cpu, unsigned int address)
|
||||||
{
|
{
|
||||||
snd.fm.curStage = sound_sample_cnt(cpu);
|
snd.fm.curStage = fm_sample_cnt(cpu);
|
||||||
fm_update();
|
fm_update();
|
||||||
return (_YM2612_Read() & 0xff);
|
return (_YM2612_Read() & 0xff);
|
||||||
}
|
}
|
||||||
@ -164,7 +258,7 @@ unsigned int fm_read(unsigned int cpu, unsigned int address)
|
|||||||
/* PSG write */
|
/* PSG write */
|
||||||
void psg_write(unsigned int cpu, unsigned int data)
|
void psg_write(unsigned int cpu, unsigned int data)
|
||||||
{
|
{
|
||||||
snd.psg.curStage = sound_sample_cnt(cpu);
|
snd.psg.curStage = psg_sample_cnt(cpu);
|
||||||
psg_update();
|
psg_update();
|
||||||
SN76489_Write(0, data);
|
SN76489_Write(0, data);
|
||||||
}
|
}
|
||||||
|
@ -280,15 +280,15 @@ INLINE void CALC_FINC_SL(slot_ *SL, int finc, int kc)
|
|||||||
|
|
||||||
SL->Finc = (finc + SL->DT[kc]) * SL->MUL;
|
SL->Finc = (finc + SL->DT[kc]) * SL->MUL;
|
||||||
|
|
||||||
/* YM2612 Detune Bug (discovered by Nemesis) */
|
/* YM2612 Detune Bug (discovered by Nemesis) */
|
||||||
if (SL->Finc < 0)
|
if (SL->Finc < 0)
|
||||||
{
|
{
|
||||||
/* Phase overflow (best result with BLOCK = 5) */
|
/* Phase overflow (best result with BLOCK = 5) */
|
||||||
finc = (int)((double)FINC_TAB[0x7FF] / YM2612.Frequence) >> 2;
|
finc = (int)((double)FINC_TAB[0x7FF] / YM2612.Frequence) >> 2;
|
||||||
SL->Finc = (finc + SL->DT[kc]) * SL->MUL;
|
SL->Finc = (finc + SL->DT[kc]) * SL->MUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
ksr = kc >> SL->KSR_S; // keycode atténuation
|
ksr = kc >> SL->KSR_S; // keycode atténuation
|
||||||
|
|
||||||
#if YM_DEBUG_LEVEL > 1
|
#if YM_DEBUG_LEVEL > 1
|
||||||
fprintf(debug_file, "FINC = %d SL->Finc = %d\n", finc, SL->Finc);
|
fprintf(debug_file, "FINC = %d SL->Finc = %d\n", finc, SL->Finc);
|
||||||
@ -575,7 +575,7 @@ int CHANNEL_SET(int Adr, unsigned char data)
|
|||||||
CH->FOCT[0] = (data & 0x38) >> 3;
|
CH->FOCT[0] = (data & 0x38) >> 3;
|
||||||
CH->KC[0] = (CH->FOCT[0] << 2) | FKEY_TAB[CH->FNUM[0] >> 7];
|
CH->KC[0] = (CH->FOCT[0] << 2) | FKEY_TAB[CH->FNUM[0] >> 7];
|
||||||
|
|
||||||
//CH->SLOT[0].Finc = -1;
|
CH->SLOT[0].Finc = -1;
|
||||||
|
|
||||||
#if YM_DEBUG_LEVEL > 1
|
#if YM_DEBUG_LEVEL > 1
|
||||||
fprintf(debug_file, "CHANNEL[%d] part2 FNUM = %d FOCT = %d KC = %d\n", num, CH->FNUM[0], CH->FOCT[0], CH->KC[0]);
|
fprintf(debug_file, "CHANNEL[%d] part2 FNUM = %d FOCT = %d KC = %d\n", num, CH->FNUM[0], CH->FOCT[0], CH->KC[0]);
|
||||||
@ -611,7 +611,7 @@ int CHANNEL_SET(int Adr, unsigned char data)
|
|||||||
YM2612.CHANNEL[2].FOCT[num] = (data & 0x38) >> 3;
|
YM2612.CHANNEL[2].FOCT[num] = (data & 0x38) >> 3;
|
||||||
YM2612.CHANNEL[2].KC[num] = (YM2612.CHANNEL[2].FOCT[num] << 2) | FKEY_TAB[YM2612.CHANNEL[2].FNUM[num] >> 7];
|
YM2612.CHANNEL[2].KC[num] = (YM2612.CHANNEL[2].FOCT[num] << 2) | FKEY_TAB[YM2612.CHANNEL[2].FNUM[num] >> 7];
|
||||||
|
|
||||||
//YM2612.CHANNEL[2].SLOT[0].Finc = -1;
|
YM2612.CHANNEL[2].SLOT[0].Finc = -1;
|
||||||
|
|
||||||
#if YM_DEBUG_LEVEL > 1
|
#if YM_DEBUG_LEVEL > 1
|
||||||
fprintf(debug_file, "CHANNEL[2] part2 FNUM[%d] = %d FOCT[%d] = %d KC[%d] = %d\n", num, YM2612.CHANNEL[2].FNUM[num], num, YM2612.CHANNEL[2].FOCT[num], num, YM2612.CHANNEL[2].KC[num]);
|
fprintf(debug_file, "CHANNEL[2] part2 FNUM[%d] = %d FOCT[%d] = %d KC[%d] = %d\n", num, YM2612.CHANNEL[2].FNUM[num], num, YM2612.CHANNEL[2].FOCT[num], num, YM2612.CHANNEL[2].KC[num]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user