From 845d1ddc4388b67a94497484ca5d9bb392b0b9ac Mon Sep 17 00:00:00 2001 From: MaxwellS04 Date: Mon, 8 Sep 2025 11:23:08 +0700 Subject: [PATCH 1/5] Added two baud rates (28.8k and 33.6k) According to Windows 98 modem setup. --- src/network/net_modem.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/network/net_modem.c b/src/network/net_modem.c index af97a16db..24869349f 100644 --- a/src/network/net_modem.c +++ b/src/network/net_modem.c @@ -1566,6 +1566,8 @@ static const device_config_t modem_config[] = { { .description = "57600", .value = 57600 }, { .description = "56000", .value = 56000 }, { .description = "38400", .value = 38400 }, + { .description = "33600", .value = 33600 }, + { .description = "28800", .value = 28800 }, { .description = "19200", .value = 19200 }, { .description = "14400", .value = 14400 }, { .description = "9600", .value = 9600 }, From 22ba8b32c138ea9a4931522b7f83d5ad778ac8b5 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Mon, 8 Sep 2025 15:37:11 +0600 Subject: [PATCH 2/5] Add support for Trio3D/2X's 8-bit palette DAC --- src/video/vid_s3_virge.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/video/vid_s3_virge.c b/src/video/vid_s3_virge.c index 3bd6d694d..d8356df4a 100644 --- a/src/video/vid_s3_virge.c +++ b/src/video/vid_s3_virge.c @@ -828,6 +828,9 @@ s3_virge_recalctimings(svga_t *svga) svga->hdisp = svga->hdisp_old; + if (virge->chip >= S3_TRIO3D2X) { + svga_set_ramdac_type(svga, (svga->seqregs[0x1b] & 0x10) ? RAMDAC_8BIT : RAMDAC_6BIT); + } if (!svga->scrblank && svga->attr_palette_enable && (svga->crtc[0x43] & 0x80)) { /* TODO: In case of bug reports, disable 9-dots-wide character clocks in graphics modes. */ svga->dots_per_clock = ((svga->seqregs[1] & 1) ? 16 : 18); From dcecd0f8a076ada93f5178c66bb0393453ba1954 Mon Sep 17 00:00:00 2001 From: Toni Riikonen Date: Mon, 8 Sep 2025 21:30:19 +0300 Subject: [PATCH 3/5] Add audio emulation installation instructions Added instructions for audio emulation installation. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index c65ddaa4f..59c481e9f 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,11 @@ Building --------- For instructions on how to build 86Box from source, see the [build guide](https://86box.readthedocs.io/en/latest/dev/buildguide.html). +## Audio emulation installation + +Build 86box executable for your target system + roms +Copy all .wav files from samples directory to the same directory with the 86box executable and you're good to go. + Licensing --------- From 6717ef2146f4873b4b806052d25b9d8e8a374395 Mon Sep 17 00:00:00 2001 From: Toni Riikonen Date: Mon, 8 Sep 2025 21:38:25 +0300 Subject: [PATCH 4/5] Code and audio samples merged --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59c481e9f..5d8f7af9f 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Immersive86Box Features -------- -* Typical 3,5" 1,44MB 300RPM FDD motor sound starting, running and stopping. FDD single track step sound an multi-track seek sound (not merged yet) +* Typical 3,5" 1,44MB 300RPM FDD motor sound starting, running and stopping. FDD single track step sound an multi-track seek sound Future plans ------------ From cc9a8deec767f82f8aaef967d7ab28d0dd7fe548 Mon Sep 17 00:00:00 2001 From: Toni Riikonen Date: Mon, 8 Sep 2025 21:39:14 +0300 Subject: [PATCH 5/5] Simplify audio emulation installation instructions --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 5d8f7af9f..9f1d95260 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,7 @@ For instructions on how to build 86Box from source, see the [build guide](https: ## Audio emulation installation -Build 86box executable for your target system + roms -Copy all .wav files from samples directory to the same directory with the 86box executable and you're good to go. +Build 86box executable for your target system + roms. Copy all .wav files from samples directory to the same directory with the 86box executable and you're good to go. Licensing ---------