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

18 lines
302 B
C++
Raw Normal View History

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