This commit is contained in:
Michaël Banaan Ananas 2014-03-22 17:45:16 +00:00
parent 6b82285fd4
commit 4930d89466
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
never have been finished.
TODO:
- hook up the DSP
- hook up the DSP!
- is master volume really linear?
- understand higher bits of reg 0
- understand reg 9
@ -111,7 +111,7 @@ void qsound_device::device_start()
m_sample_rom = (INT8*)*region();
m_sample_rom_length = region()->bytes();
m_stream = stream_alloc(0, 2, clock() / 166); // /166 clock divider
m_stream = stream_alloc(0, 2, clock() / 166); // /166 clock divider?
// create pan table
for (int i = 0; i < 33; i++)

View File

@ -11,7 +11,7 @@
#include "cpu/dsp16/dsp16.h"
#define QSOUND_CLOCK 4000000 /* default 4MHz clock */
#define QSOUND_CLOCK 4000000 /* default 4MHz clock (60MHz/15?) */
//**************************************************************************