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

#include "core/hle/service/fatal/fatal_u.h"

namespace Service {
namespace Fatal {

Fatal_U::Fatal_U(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "fatal:u") {
    static const FunctionInfo functions[] = {
        {1, &Fatal_U::FatalSimple, "FatalSimple"},
        {2, &Fatal_U::TransitionToFatalError, "TransitionToFatalError"},
    };
    RegisterHandlers(functions);
}

} // namespace Fatal
} // namespace Service