k_system_control.h 426 B

12345678910111213141516171819202122
  1. // SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include "common/common_types.h"
  5. #define BOARD_NINTENDO_NX
  6. #ifdef BOARD_NINTENDO_NX
  7. #include "core/hle/kernel/board/nintendo/nx/k_system_control.h"
  8. namespace Kernel {
  9. using Kernel::Board::Nintendo::Nx::KSystemControl;
  10. } // namespace Kernel
  11. #else
  12. #error "Unknown board for KSystemControl"
  13. #endif