Sord M5, FM-7 and PC-6000 Presets

This addition adds Sord M5, FM-7, and PC-6000 Presets to the furnace that we'd forgotten to add.
This commit is contained in:
agajgjsa592586 2024-06-29 13:36:50 -05:00 committed by tildearrow
parent d85f98c450
commit 00314de3b9

View file

@ -519,6 +519,11 @@ void FurnaceGUI::initSystemPresets() {
) // variable rate, Mono DAC ) // variable rate, Mono DAC
} }
); );
ENTRY(
"NEC PC-6001", {
CH(DIV_SYSTEM_AY8910, 1.0f, 0, "customClock=3993600")
}
);
ENTRY( ENTRY(
"NEC PC-88", {} "NEC PC-88", {}
); );
@ -1215,6 +1220,18 @@ void FurnaceGUI::initSystemPresets() {
CH(DIV_SYSTEM_MSM6258, 1.0f, 0, "clockSel=2") CH(DIV_SYSTEM_MSM6258, 1.0f, 0, "clockSel=2")
} }
); );
ENTRY(
"FM-7", {
CH(DIV_SYSTEM_AY8910, 1.0f, 0, "clockSel=12"),
CH(DIV_SYSTEM_YM2203, 1.0f, 0, "clockSel=5")
}
);
SUB_ENTRY(
"FM-7 (extended channel 3)", {
CH(DIV_SYSTEM_AY8910, 1.0f, 0, "clockSel=12"),
CH(DIV_SYSTEM_YM2203_EXT, 1.0f, 0, "clockSel=5")
}
);
ENTRY( ENTRY(
"FM Towns", { "FM Towns", {
CH(DIV_SYSTEM_YM2612, 1.0f, 0, "clockSel=2"), // YM3438 CH(DIV_SYSTEM_YM2612, 1.0f, 0, "clockSel=2"), // YM3438
@ -1259,6 +1276,14 @@ void FurnaceGUI::initSystemPresets() {
) )
} }
); );
ENTRY(
"Sord M5", {
CH(DIV_SYSTEM_SMS, 1.0f, 0,
"customClock=1770000\n"
"chipType=1\n"
)
}
);
CATEGORY_END; CATEGORY_END;
CATEGORY_BEGIN("Arcade systems","INSERT COIN"); CATEGORY_BEGIN("Arcade systems","INSERT COIN");