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