From 165c92613517c548b57a00ed317abb0640acacd7 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 30 Aug 2021 07:32:27 -0700 Subject: [PATCH] ams: bump version to 0.20.1 --- Makefile | 1 - docs/changelog.md | 5 +++++ libraries/libvapours/include/vapours/ams/ams_api_version.h | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b11ee475e..cc6235e06 100644 --- a/Makefile +++ b/Makefile @@ -118,7 +118,6 @@ dist: dist-no-debug rm -rf atmosphere-$(AMSVER)-debug mkdir atmosphere-$(AMSVER)-debug cp fusee/fusee-primary/fusee-primary.elf atmosphere-$(AMSVER)-debug/fusee-primary.elf - cp fusee/fusee-mtc/fusee-mtc.elf atmosphere-$(AMSVER)-debug/fusee-mtc.elf cp fusee/fusee-secondary/fusee-secondary-experimental.elf atmosphere-$(AMSVER)-debug/fusee-secondary.elf cp exosphere/loader_stub/loader_stub.elf atmosphere-$(AMSVER)-debug/exosphere-loader-stub.elf cp exosphere/program/program.elf atmosphere-$(AMSVER)-debug/exosphere-program.elf diff --git a/docs/changelog.md b/docs/changelog.md index 176c9e7c7..5374db8f0 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,4 +1,9 @@ # Changelog +## 0.20.1 ++ An issue was fixed that caused severely degraded performance after wake-from-sleep on Mariko hardware. + + This was due to Mariko MTC resulting in a frequency of 1599.999MHz instead of 1600MHz. + + Due to this off-by-one, Nintendo's EMC management code failed to initialize/take over, and after wake from sleep RAM would be in a strange state. ++ General system stability improvements to enhance the user's experience. ## 0.20.0 + DRAM training (MTC) was implemented for Mariko hardware, increasing RAM speed from 204MHz to 1600MHz. + This significantly optimizes Mariko boot speed, cutting boot time roughly in half. diff --git a/libraries/libvapours/include/vapours/ams/ams_api_version.h b/libraries/libvapours/include/vapours/ams/ams_api_version.h index 8051d91ea..59dee334f 100644 --- a/libraries/libvapours/include/vapours/ams/ams_api_version.h +++ b/libraries/libvapours/include/vapours/ams/ams_api_version.h @@ -17,7 +17,7 @@ #define ATMOSPHERE_RELEASE_VERSION_MAJOR 0 #define ATMOSPHERE_RELEASE_VERSION_MINOR 20 -#define ATMOSPHERE_RELEASE_VERSION_MICRO 0 +#define ATMOSPHERE_RELEASE_VERSION_MICRO 1 #define ATMOSPHERE_RELEASE_VERSION ATMOSPHERE_RELEASE_VERSION_MAJOR, ATMOSPHERE_RELEASE_VERSION_MINOR, ATMOSPHERE_RELEASE_VERSION_MICRO