Просмотр исходного кода

nce: fix pre-text patch for single modules

Liam 2 лет назад
Родитель
Сommit
9de99839bd
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      src/core/arm/nce/patcher.cpp

+ 2 - 0
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);