summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.h
blob: c5539ac1cc8ee6d69a022fe15c70b89e7194f1b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "common/common_types.h"

namespace Core {
class System;
}

namespace Kernel {

void CallSVC(Core::System& system, u32 immediate);

} // namespace Kernel