mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
18 lines
350 B
C
18 lines
350 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2022, Timon Kruiper <timonkruiper@gmail.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <AK/Platform.h>
|
||
|
|
|
||
|
|
#if ARCH(X86_64) || ARCH(I386)
|
||
|
|
# include <Kernel/Arch/x86/IRQController.h>
|
||
|
|
#elif ARCH(AARCH64)
|
||
|
|
# include <Kernel/Arch/aarch64/IRQController.h>
|
||
|
|
#else
|
||
|
|
# error "Unknown architecture"
|
||
|
|
#endif
|