From 6de9c0b85cf571f0e7871833d7f8380e986a850f Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Wed, 6 Dec 2023 16:34:23 +0100 Subject: [PATCH] early-access version 4009 --- README.md | 2 +- src/core/arm/nce/patcher.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c0b97fee7..35f181a03 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 4008. +This is the source code for early-access 4009. ## Legal Notice diff --git a/src/core/arm/nce/patcher.cpp b/src/core/arm/nce/patcher.cpp index f97b909df..47a7a8880 100755 --- a/src/core/arm/nce/patcher.cpp +++ b/src/core/arm/nce/patcher.cpp @@ -28,6 +28,8 @@ Patcher::~Patcher() = default; void Patcher::PatchText(const Kernel::PhysicalMemory& program_image, const Kernel::CodeSet::Segment& code) { + // Branch to the first instruction of the module. + this->BranchToModule(0); // Write save context helper function. c.l(m_save_context);