summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_system_control.h
blob: d755082c24367e689b116bde82f4d6e2cf425346 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#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