yuzu/src/core/hle/service/jit/jit.h

15 lines
267 B
C
Raw Normal View History

2022-11-05 16:58:44 +04:00
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
namespace Core {
class System;
}
namespace Service::JIT {
2023-02-19 08:22:05 +04:00
void LoopProcess(Core::System& system);
2022-11-05 16:58:44 +04:00
} // namespace Service::JIT