trunk/src/emu/sound/fm2612.c
| r31477 | r31478 | |
| 24 | 24 | ** |
| 25 | 25 | ** CHANGELOG: |
| 26 | 26 | ** |
| 27 | ** 07-30-2014 dink (FB Alpha project): |
| 28 | ** - fixed missing dac channel on savestate load |
| 29 | ** |
| 30 | ** xx-xx-xxxx |
| 27 | 31 | ** - fixed LFO implementation: |
| 28 | 32 | ** .added support for CH3 special mode: fixes various sound effects (birds in Warlock, bug sound in Aladdin...) |
| 29 | 33 | ** .inverted LFO AM waveform: fixes Spider-Man & Venom : Separation Anxiety (intro), California Games (surfing event) |
| r31477 | r31478 | |
| 2323 | 2327 | |
| 2324 | 2328 | /* DAC data & port */ |
| 2325 | 2329 | F2612->dacout = ((int)F2612->REGS[0x2a] - 0x80) << 6; /* level unknown */ |
| 2326 | | F2612->dacen = F2612->REGS[0x2d] & 0x80; |
| 2330 | F2612->dacen = F2612->REGS[0x2b] & 0x80; |
| 2327 | 2331 | /* OPN registers */ |
| 2328 | 2332 | /* DT / MULTI , TL , KS / AR , AMON / DR , SR , SL / RR , SSG-EG */ |
| 2329 | 2333 | for(r=0x30;r<0x9e;r++) |