From 675fae2c03829d9b14f5c32a766fd0b80a1cbfad Mon Sep 17 00:00:00 2001 From: Ian Scott Date: Mon, 29 Jul 2024 22:08:25 -0600 Subject: [PATCH] Prep for v2.1.0 release --- sw/CHANGELOG.md | 10 ++++++++++ sw/CMakeLists.txt | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/sw/CHANGELOG.md b/sw/CHANGELOG.md index 3d41deb..72461b7 100644 --- a/sw/CHANGELOG.md +++ b/sw/CHANGELOG.md @@ -1,3 +1,13 @@ +# v2.1.0 + +## New features/changes + +### MPU-401 simultaneous with all modes + +MPU-401 emulation is now available in all modes. This can enable simultaneous digital sound effects in SB or GUS modes with MIDI output. If you have another MPU-401 card in the system, to prevent conflicts this can be disabled or moved to a different port with the `/mpuport` option to pgusinit. + +The original MPU mode is still available for titles that require MPU interrupts (titles on [this list](https://github.com/bjt42/softmpu/wiki/Compatible-Intelligent-Mode-Games) marked with a 1 require MPU interrupts). + # v2.0.0 ## New features/changes diff --git a/sw/CMakeLists.txt b/sw/CMakeLists.txt index 9546ec3..63869eb 100644 --- a/sw/CMakeLists.txt +++ b/sw/CMakeLists.txt @@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 3.13) include(pico_sdk_import.cmake) project(picogus - VERSION "2.0.0" + VERSION "2.1.0" LANGUAGES C CXX ASM )