mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-27 22:20:04 +00:00
29 lines
464 B
C++
29 lines
464 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include "common/common_types.h"
|
|
|
|
namespace Core {
|
|
class System;
|
|
} // namespace Core
|
|
|
|
namespace Kernel {
|
|
|
|
class SVC;
|
|
|
|
class SVCContext {
|
|
public:
|
|
SVCContext(Core::System& system);
|
|
~SVCContext();
|
|
void CallSVC(u32 immediate);
|
|
|
|
private:
|
|
std::unique_ptr<SVC> impl;
|
|
};
|
|
|
|
} // namespace Kernel
|