early-access version 4009
This commit is contained in:
parent
5cbafe3cfe
commit
6de9c0b85c
2 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 4008.
|
This is the source code for early-access 4009.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,8 @@ Patcher::~Patcher() = default;
|
||||||
|
|
||||||
void Patcher::PatchText(const Kernel::PhysicalMemory& program_image,
|
void Patcher::PatchText(const Kernel::PhysicalMemory& program_image,
|
||||||
const Kernel::CodeSet::Segment& code) {
|
const Kernel::CodeSet::Segment& code) {
|
||||||
|
// Branch to the first instruction of the module.
|
||||||
|
this->BranchToModule(0);
|
||||||
|
|
||||||
// Write save context helper function.
|
// Write save context helper function.
|
||||||
c.l(m_save_context);
|
c.l(m_save_context);
|
||||||
|
|
Loading…
Reference in a new issue