summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_system_control.h
blob: b8292e9d0de52d0df271754ae89ce00a02ad2392 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "common/common_types.h"

#define BOARD_NINTENDO_NX

#ifdef BOARD_NINTENDO_NX

#include "core/hle/kernel/board/nintendo/nx/k_system_control.h"

namespace Kernel {

using Kernel::Board::Nintendo::Nx::KSystemControl;

} // namespace Kernel

#else
#error "Unknown board for KSystemControl"
#endif