yuzu/src/core/hle/kernel/svc.h

17 lines
293 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "common/common_types.h"
namespace Core {
class System;
}
namespace Kernel::Svc {
void Call(Core::System& system, u32 immediate);
} // namespace Kernel::Svc