diff options
Diffstat (limited to 'src/core/loader/nso.cpp')
| -rw-r--r-- | src/core/loader/nso.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/loader/nso.cpp b/src/core/loader/nso.cpp index 8592b1f44..7beeaaff3 100644 --- a/src/core/loader/nso.cpp +++ b/src/core/loader/nso.cpp | |||
| @@ -164,6 +164,9 @@ std::optional<VAddr> AppLoader_NSO::LoadModule(Kernel::Process& process, | |||
| 164 | // Register module with GDBStub | 164 | // Register module with GDBStub |
| 165 | GDBStub::RegisterModule(file.GetName(), load_base, load_base); | 165 | GDBStub::RegisterModule(file.GetName(), load_base, load_base); |
| 166 | 166 | ||
| 167 | // Register module for ARMInterface with System | ||
| 168 | Core::System::GetInstance().RegisterNSOModule(file.GetName(), load_base); | ||
| 169 | |||
| 167 | return load_base + image_size; | 170 | return load_base + image_size; |
| 168 | } | 171 | } |
| 169 | 172 | ||