mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-20 09:28:02 +00:00
service: jit: stub JIT service
This commit is contained in:
parent
e93b5c33eb
commit
d414904aef
8 changed files with 88 additions and 1 deletions
20
src/core/hle/service/jit/jit.h
Normal file
20
src/core/hle/service/jit/jit.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Copyright 2022 yuzu Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Core {
|
||||
class System;
|
||||
}
|
||||
|
||||
namespace Service::SM {
|
||||
class ServiceManager;
|
||||
}
|
||||
|
||||
namespace Service::JIT {
|
||||
|
||||
/// Registers all JIT services with the specified service manager.
|
||||
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system);
|
||||
|
||||
} // namespace Service::JIT
|
Loading…
Add table
Add a link
Reference in a new issue