Merge branch 'master' of https://github.com/tildearrow/furnace into nmk112

This commit is contained in:
cam900 2024-02-03 15:04:43 +09:00
commit 3922770e8f
166 changed files with 4829 additions and 2054 deletions

View file

@ -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"),
@ -2828,6 +2856,11 @@ void FurnaceGUI::initSystemPresets() {
CH(DIV_SYSTEM_SOUND_UNIT, 1.0f, 0, "")
}
);
ENTRY(
"PowerNoise", {
CH(DIV_SYSTEM_POWERNOISE, 1.0f, 0, "")
}
);
CATEGORY_END;
CATEGORY_BEGIN("DefleMask-compatible","these configurations are compatible with DefleMask.\nselect this if you need to save as .dmf or work with that program.");