2018-01-13 22:22:39 +01:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 09:49:13 +01:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-12 00:44:21 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2019-04-07 00:46:18 +02:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2020-03-27 01:00:30 +01:00
|
|
|
namespace Kernel::Svc {
|
2014-05-16 00:25:56 +02:00
|
|
|
|
2020-03-27 01:00:30 +01:00
|
|
|
void Call(Core::System& system, u32 immediate);
|
2014-04-12 00:44:21 +02:00
|
|
|
|
2020-03-27 01:00:30 +01:00
|
|
|
} // namespace Kernel::Svc
|