k005289 enhancement from mame svn + increse the pew!pew! sound in nemesis a bit

This commit is contained in:
dinkc64 2014-08-10 05:47:27 +00:00
parent 6377774dcc
commit fab79003a0
2 changed files with 3 additions and 3 deletions

View File

@ -2138,7 +2138,7 @@ static void NemesisSoundInit()
AY8910Init(0, 14318180/8, nBurnSoundRate, &nemesis_AY8910_0_portA, NULL, NULL, NULL);
AY8910Init(1, 14318180/8, nBurnSoundRate, NULL, NULL, &k005289_control_A_write, &k005289_control_B_write);
AY8910SetAllRoutes(0, 0.20, BURN_SND_ROUTE_BOTH);
AY8910SetAllRoutes(0, 0.35, BURN_SND_ROUTE_BOTH);
AY8910SetAllRoutes(1, 1.00, BURN_SND_ROUTE_BOTH);
ay8910_enable = 1;

View File

@ -242,7 +242,7 @@ void K005289Ld1Write(INT32 offset)
#endif
offset &= 0xfff;
freq_latch[0] = 0x1000 - offset;
freq_latch[0] = 0xfff - offset;
}
void K005289Ld2Write(INT32 offset)
@ -252,7 +252,7 @@ void K005289Ld2Write(INT32 offset)
#endif
offset &= 0xfff;
freq_latch[1] = 0x1000 - offset;
freq_latch[1] = 0xfff - offset;
}
void K005289Tg1Write()