diff options
| author | 2018-08-01 21:32:36 -0400 | |
|---|---|---|
| committer | 2018-08-01 21:32:36 -0400 | |
| commit | 200c95db8a816db0170b2fa27992fc719e434e05 (patch) | |
| tree | 24c4b73abf24a6106ce1f2a86da77f41736b6624 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #885 from greggameplayer/R32-Float (diff) | |
| parent | service: Add bpc and pcv services (diff) | |
| download | yuzu-200c95db8a816db0170b2fa27992fc719e434e05.tar.gz yuzu-200c95db8a816db0170b2fa27992fc719e434e05.tar.xz yuzu-200c95db8a816db0170b2fa27992fc719e434e05.zip | |
Merge pull request #887 from lioncash/pcv
service: Add bpc and pcv services
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index fccc4c461..747a2252e 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -21,6 +21,7 @@ | |||
| 21 | #include "core/hle/service/apm/apm.h" | 21 | #include "core/hle/service/apm/apm.h" |
| 22 | #include "core/hle/service/audio/audio.h" | 22 | #include "core/hle/service/audio/audio.h" |
| 23 | #include "core/hle/service/bcat/bcat.h" | 23 | #include "core/hle/service/bcat/bcat.h" |
| 24 | #include "core/hle/service/bpc/bpc.h" | ||
| 24 | #include "core/hle/service/btdrv/btdrv.h" | 25 | #include "core/hle/service/btdrv/btdrv.h" |
| 25 | #include "core/hle/service/btm/btm.h" | 26 | #include "core/hle/service/btm/btm.h" |
| 26 | #include "core/hle/service/erpt/erpt.h" | 27 | #include "core/hle/service/erpt/erpt.h" |
| @@ -47,6 +48,7 @@ | |||
| 47 | #include "core/hle/service/nvdrv/nvdrv.h" | 48 | #include "core/hle/service/nvdrv/nvdrv.h" |
| 48 | #include "core/hle/service/pcie/pcie.h" | 49 | #include "core/hle/service/pcie/pcie.h" |
| 49 | #include "core/hle/service/pctl/pctl.h" | 50 | #include "core/hle/service/pctl/pctl.h" |
| 51 | #include "core/hle/service/pcv/pcv.h" | ||
| 50 | #include "core/hle/service/pm/pm.h" | 52 | #include "core/hle/service/pm/pm.h" |
| 51 | #include "core/hle/service/prepo/prepo.h" | 53 | #include "core/hle/service/prepo/prepo.h" |
| 52 | #include "core/hle/service/service.h" | 54 | #include "core/hle/service/service.h" |
| @@ -204,6 +206,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 204 | APM::InstallInterfaces(*sm); | 206 | APM::InstallInterfaces(*sm); |
| 205 | Audio::InstallInterfaces(*sm); | 207 | Audio::InstallInterfaces(*sm); |
| 206 | BCAT::InstallInterfaces(*sm); | 208 | BCAT::InstallInterfaces(*sm); |
| 209 | BPC::InstallInterfaces(*sm); | ||
| 207 | BtDrv::InstallInterfaces(*sm); | 210 | BtDrv::InstallInterfaces(*sm); |
| 208 | BTM::InstallInterfaces(*sm); | 211 | BTM::InstallInterfaces(*sm); |
| 209 | ERPT::InstallInterfaces(*sm); | 212 | ERPT::InstallInterfaces(*sm); |
| @@ -230,6 +233,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 230 | Nvidia::InstallInterfaces(*sm); | 233 | Nvidia::InstallInterfaces(*sm); |
| 231 | PCIe::InstallInterfaces(*sm); | 234 | PCIe::InstallInterfaces(*sm); |
| 232 | PCTL::InstallInterfaces(*sm); | 235 | PCTL::InstallInterfaces(*sm); |
| 236 | PCV::InstallInterfaces(*sm); | ||
| 233 | PlayReport::InstallInterfaces(*sm); | 237 | PlayReport::InstallInterfaces(*sm); |
| 234 | PM::InstallInterfaces(*sm); | 238 | PM::InstallInterfaces(*sm); |
| 235 | Set::InstallInterfaces(*sm); | 239 | Set::InstallInterfaces(*sm); |