summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc/svc_kernel_debug.cpp
blob: 454255e7ad23feb70190f8e322c05ce5d77d37bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "core/hle/kernel/svc.h"

namespace Kernel::Svc {

void KernelDebug([[maybe_unused]] Core::System& system, [[maybe_unused]] u32 kernel_debug_type,
                 [[maybe_unused]] u64 param1, [[maybe_unused]] u64 param2,
                 [[maybe_unused]] u64 param3) {
    // Intentionally do nothing, as this does nothing in released kernel binaries.
}

void ChangeKernelTraceState([[maybe_unused]] Core::System& system,
                            [[maybe_unused]] u32 trace_state) {
    // Intentionally do nothing, as this does nothing in released kernel binaries.
}

} // namespace Kernel::Svc