From b44d9d71c5c887b67c79da7b70a1b7e0e2de5525 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 12 Oct 2023 01:22:00 +0200 Subject: [PATCH 1/2] Make the MS-5119 use a newer (the latest) BIOS revision, fixes #3684. --- src/machine/m_at_socket7_3v.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/m_at_socket7_3v.c b/src/machine/m_at_socket7_3v.c index 3b983c05f..06974a96d 100644 --- a/src/machine/m_at_socket7_3v.c +++ b/src/machine/m_at_socket7_3v.c @@ -373,7 +373,7 @@ machine_at_ms5119_init(const machine_t *model) { int ret; - ret = bios_load_linear("roms/machines/ms5119/A37E.ROM", + ret = bios_load_linear("roms/machines/ms5119/A37EB.ROM", 0x000e0000, 131072, 0); if (bios_only || !ret) From 49e7ee8adc60884f26e2c29cc95fe0b0f845ff7c Mon Sep 17 00:00:00 2001 From: richardg867 Date: Wed, 11 Oct 2023 20:54:06 -0300 Subject: [PATCH 2/2] snd_sb: Naming consistency on the new cards --- src/sound/snd_sb.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/sound/snd_sb.c b/src/sound/snd_sb.c index cc3fc825d..fde2e98ba 100644 --- a/src/sound/snd_sb.c +++ b/src/sound/snd_sb.c @@ -3861,7 +3861,7 @@ const device_t sb_16_device = { }; const device_t sb_vibra16s_onboard_device = { - .name = "Sound Blaster Vibra 16S (On-Board)", + .name = "Sound Blaster ViBRA 16S (On-Board)", .internal_name = "sb_vibra16s_onboard", .flags = DEVICE_ISA | DEVICE_AT, .local = FM_YMF289B, @@ -3875,7 +3875,7 @@ const device_t sb_vibra16s_onboard_device = { }; const device_t sb_vibra16s_device = { - .name = "Sound Blaster Vibra 16S", + .name = "Sound Blaster ViBRA 16S", .internal_name = "sb_vibra16s", .flags = DEVICE_ISA | DEVICE_AT, .local = FM_YMF289B, @@ -3889,7 +3889,7 @@ const device_t sb_vibra16s_device = { }; const device_t sb_vibra16xv_device = { - .name = "Sound Blaster Vibra 16XV", + .name = "Sound Blaster ViBRA 16XV", .internal_name = "sb_vibra16xv", .flags = DEVICE_ISA | DEVICE_AT, .local = 0, @@ -3903,7 +3903,7 @@ const device_t sb_vibra16xv_device = { }; const device_t sb_vibra16c_onboard_device = { - .name = "Sound Blaster Vibra 16C (On-Board)", + .name = "Sound Blaster ViBRA 16C (On-Board)", .internal_name = "sb_vibra16c_onboard", .flags = DEVICE_ISA | DEVICE_AT, .local = 1, @@ -3917,7 +3917,7 @@ const device_t sb_vibra16c_onboard_device = { }; const device_t sb_vibra16c_device = { - .name = "Sound Blaster Vibra 16C", + .name = "Sound Blaster ViBRA 16C", .internal_name = "sb_vibra16c", .flags = DEVICE_ISA | DEVICE_AT, .local = 1,