diff --git a/bochs/CHANGES b/bochs/CHANGES index 76166fd5a..961d6437e 100644 --- a/bochs/CHANGES +++ b/bochs/CHANGES @@ -1,7 +1,14 @@ -Changes in 2.6.5 (not yet released - updated May 23, 2014): +Changes in 2.6.5 (not yet released - updated May 26, 2014): Brief summary : - TODO +- TODO: cpu, debugger, ... +- Gui debugger output window now can be used as a log viewer +- Added built-in slirp (user-mode networking) support (ported from Qemu) +- Added global sound config option and volume control support to the devices +- Added new experimental gui 'vncsrv" using the LibVNCServer library +- Rewrite of the bximage utility in C++ for image creation, conversion and resize + +Detailed change log : - CPU - Bugfixes for CPU emulation correctness (critical fixes for XSAVE, VMX, TBM/BMI and RDRAND instructions) @@ -42,7 +49,7 @@ Brief summary : - Added new bochsrc option to control the speaker output mode - Added support to specify the initial time for 'clock' option in ctime(3) string format - Added support for the LTDL_LIBRARY_PATH variable with MSVC plugins - - All SB16 / ES1370 are now changable at runtime + - All SB16 / ES1370 options are now changable at runtime - textconfig: added menu item for saving configuration at runtime - Added bochsrc option for the Voodoo Graphics emulation (experimental) diff --git a/bochs/iodev/sound/sb16.cc b/bochs/iodev/sound/sb16.cc index dffd7c475..e8bf150e0 100644 --- a/bochs/iodev/sound/sb16.cc +++ b/bochs/iodev/sound/sb16.cc @@ -1294,7 +1294,7 @@ void bx_sb16_c::dsp_dma(Bit8u command, Bit8u mode, Bit16u length, Bit8u comp) } } else { if (DSP.inputinit == 0) { - ret = BX_SB16_OUTPUT->openwaveinput(SIM->get_param_string(BXPN_SOUND_WAVEIN, base)->getptr(), sb16_adc_handler); + ret = BX_SB16_OUTPUT->openwaveinput(SIM->get_param_string(BXPN_SOUND_WAVEIN)->getptr(), sb16_adc_handler); if (ret != BX_SOUNDLOW_OK) { BX_SB16_THIS wavemode = 0; writelog(WAVELOG(2), "Error: Could not open wave input device.");