mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 20:32:56 +03:00
25 lines
438 B
C
25 lines
438 B
C
|
/*
|
||
|
* Copyright (c) 2018-2022, James Mintram <me@jamesrm.com>
|
||
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/Platform.h>
|
||
|
|
||
|
#if ARCH(X86_64) || ARCH(I386)
|
||
|
# include <Kernel/Arch/x86/CPU.h>
|
||
|
#elif ARCH(AARCH64)
|
||
|
# include <Kernel/Arch/aarch64/CPU.h>
|
||
|
#else
|
||
|
# error "Unknown architecture"
|
||
|
#endif
|
||
|
|
||
|
namespace Kernel {
|
||
|
|
||
|
struct RegisterState;
|
||
|
|
||
|
}
|