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

#pragma once

#include "common/common_types.h"

namespace Kernel {

class KernelCore;

namespace KInterruptManager {
void HandleInterrupt(KernelCore& kernel, s32 core_id);
}

} // namespace Kernel