diff --git a/README.md b/README.md
index 4661fbfed..61d25fc81 100644
--- a/README.md
+++ b/README.md
@@ -13,14 +13,23 @@
Lime3DS is a project which aims to revive and continue work on Citra, a popular open-source Nintendo 3DS emulator which ceased development.
-## Download
-Builds are actively maintained for Windows, Linux, Android, and MacOS.
+# Installation
-Downloads are available on the [Lime3DS Releases](https://github.com/Lime3DS/Lime-3DS-Emulator/releases) page.
+## Linux
-Lime3DS is also available on [Flathub](https://flathub.org/en-GB/apps/io.github.lime3ds.Lime3DS)
+The app is available in the [Releases](https://github.com/Lime3DS/Lime3DS/releases) page as `.appimage` and `.tar.gz`.
-## Contribute
+
+
+## Windows & MacOS
+
+Download the latest release from [Releases](https://github.com/Lime3DS/Lime3DS/releases).
+
+## Android
+Download the latest `.apk`/`.aab` release from [Releases](https://github.com/Lime3DS/Lime3DS/releases). (A F-Droid/IzzyOnDroid release is planned to drop soon)
+
+
+# Contribute
If you believe you can help with this project, please lend us your talent! We're a team of passionate enthusiasts who need all the help we can get.
## Discord
diff --git a/src/core/arm/dynarmic/arm_dynarmic.cpp b/src/core/arm/dynarmic/arm_dynarmic.cpp
index dbf6ea71c..2cdc9c119 100644
--- a/src/core/arm/dynarmic/arm_dynarmic.cpp
+++ b/src/core/arm/dynarmic/arm_dynarmic.cpp
@@ -99,6 +99,9 @@ public:
case Dynarmic::A32::Exception::PreloadInstruction:
return;
}
+ for (int i = 0; i < 16; i++) {
+ LOG_CRITICAL(Debug, "r{:02d} = {:08X}", i, parent.GetReg(i));
+ }
ASSERT_MSG(false, "ExceptionRaised(exception = {}, pc = {:08X}, code = {:08X})", exception,
pc, MemoryReadCode(pc).value());
}