From 20ffd5147ffe6e2eaed6716647440d2e4f1cb0ac Mon Sep 17 00:00:00 2001 From: tildearrow Date: Thu, 25 Jan 2024 19:41:31 -0500 Subject: [PATCH] GUI: add stereo 86PCM presets not replacing the previous ones due to uncertainty and lack of reliable sources issue #1575 --- src/gui/presets.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/gui/presets.cpp b/src/gui/presets.cpp index b54137dba..0c8894615 100644 --- a/src/gui/presets.cpp +++ b/src/gui/presets.cpp @@ -767,6 +767,34 @@ void FurnaceGUI::initSystemPresets() { CH(DIV_SYSTEM_PCSPKR, 1.0f, 0, "clockSel=1") } ); + ENTRY( + "NEC PC-98 (with PC-9801-86) stereo", { // -73 also has OPNA + CH(DIV_SYSTEM_YM2608, 1.0f, 0, "clockSel=1"), + CH(DIV_SYSTEM_PCM_DAC, 1.0f, -1.0f, // 2x 16-bit Burr Brown DAC + "rate=44100\n" + "outDepth=15\n" + ), + CH(DIV_SYSTEM_PCM_DAC, 1.0f, 1.0f, + "rate=44100\n" + "outDepth=15\n" + ), + CH(DIV_SYSTEM_PCSPKR, 1.0f, 0, "clockSel=1") + } + ); + ENTRY( + "NEC PC-98 (with PC-9801-86; extended channel 3) stereo", { // -73 also has OPNA + CH(DIV_SYSTEM_YM2608_EXT, 1.0f, 0, "clockSel=1"), + CH(DIV_SYSTEM_PCM_DAC, 1.0f, -1.0f, + "rate=44100\n" + "outDepth=15\n" + ), + CH(DIV_SYSTEM_PCM_DAC, 1.0f, 1.0f, + "rate=44100\n" + "outDepth=15\n" + ), + CH(DIV_SYSTEM_PCSPKR, 1.0f, 0, "clockSel=1") + } + ); ENTRY( "NEC PC-98 (with PC-9801-73)", { CH(DIV_SYSTEM_YM2608, 1.0f, 0, "clockSel=1"),