2022-04-23 09:59:50 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-04-11 23:44:21 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2019-04-06 23:46:18 +01:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2020-03-27 00:00:30 +00:00
|
|
|
namespace Kernel::Svc {
|
2014-05-15 23:25:56 +01:00
|
|
|
|
2020-03-27 00:00:30 +00:00
|
|
|
void Call(Core::System& system, u32 immediate);
|
2014-04-11 23:44:21 +01:00
|
|
|
|
2020-03-27 00:00:30 +00:00
|
|
|
} // namespace Kernel::Svc
|