Files
eden/src/core/hle/kernel/svc.h
T

17 lines
293 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2014-04-11 18:44:21 -04:00
#pragma once
#include "common/common_types.h"
namespace Core {
class System;
}
namespace Kernel::Svc {
2014-05-15 18:25:56 -04:00
void Call(Core::System& system, u32 immediate);
2014-04-11 18:44:21 -04:00
} // namespace Kernel::Svc