diff options
| author | bunnei <bunneidev@gmail.com> | 2022-04-06 18:34:45 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-06 18:34:45 -0700 |
| commit | 172137f1a08cf5a702ca6da6ecba0329b10e0ed7 (patch) | |
| tree | dd5f1a3ffbc709e9fa2fd5ad53c24146fc318486 /src/core/hle/service/service.cpp | |
| parent | eb8c8db8992b5c5027d172c859e214c722be3b56 (diff) | |
| parent | 0cfcee95c7d13d6ea2d7c73c6f1b64a17ceb2aca (diff) | |
Merge pull request #8164 from liamwhite/jit-stub
service: jit: stub JIT service
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 8d902beb9..0f59a03c5 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -32,6 +32,7 @@ #include "core/hle/service/glue/glue.h" #include "core/hle/service/grc/grc.h" #include "core/hle/service/hid/hid.h" +#include "core/hle/service/jit/jit.h" #include "core/hle/service/lbl/lbl.h" #include "core/hle/service/ldn/ldn.h" #include "core/hle/service/ldr/ldr.h" @@ -262,6 +263,7 @@ Services::Services(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system Glue::InstallInterfaces(system); GRC::InstallInterfaces(*sm, system); HID::InstallInterfaces(*sm, system); + JIT::InstallInterfaces(*sm, system); LBL::InstallInterfaces(*sm, system); LDN::InstallInterfaces(*sm, system); LDR::InstallInterfaces(*sm, system); |
