From a47bd06da9918d2cd6096a2d74ef21cc606e4521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Vitor=20Polverari?= Date: Wed, 10 Apr 2024 16:39:21 -0300 Subject: [PATCH 1/3] Update Install instructions --- README.md | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4661fbfed..d7e5251e8 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 +Download on Flathub + +## Windows & MacOS + +Download the latest release from [Releases](https://github.com/Lime3DS/Lime3DS/releases). + +## Android +Download the latest `t.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 From 880292592c420e94634cc8e00cdc0110ca285e21 Mon Sep 17 00:00:00 2001 From: Mike <99037623+MikeIsAStar@users.noreply.github.com> Date: Wed, 10 Apr 2024 16:35:50 -0400 Subject: [PATCH 2/3] Log the contents of the General Purpose Registers when an unrecoverable exception occurs (#66) This information is valuable for individuals utilizing Lime3DS to assist in debugging processes. --- src/core/arm/dynarmic/arm_dynarmic.cpp | 3 +++ 1 file changed, 3 insertions(+) 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()); } From 6e553a5e210361650a59c7989ab4f8d3f07ca53e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Vitor=20Polverari?= Date: Wed, 10 Apr 2024 17:36:43 -0300 Subject: [PATCH 3/3] fixed t.apk to .apk --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d7e5251e8..61d25fc81 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ The app is available in the [Releases](https://github.com/Lime3DS/Lime3DS/releas Download the latest release from [Releases](https://github.com/Lime3DS/Lime3DS/releases). ## Android -Download the latest `t.apk`/`.aab` release from [Releases](https://github.com/Lime3DS/Lime3DS/releases). (A F-Droid/IzzyOnDroid release is planned to drop soon) +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