summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_interrupt_manager.h
blob: 05924801e19b13c46b90ecfb33b4f06811df794c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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"

namespace Kernel {

class KernelCore;

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

} // namespace Kernel