ladybird/Userland/Libraries/LibC/sys/arch/regs.h

20 lines
344 B
C
Raw Normal View History

2021-03-07 16:11:25 +01:00
/*
* Copyright (c) 2021, Leon Albrecht <leon2002.la@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
2021-03-07 16:11:25 +01:00
*/
#pragma once
#include <AK/Platform.h>
2022-10-04 02:52:43 +03:00
#if ARCH(X86_64)
2021-03-07 16:11:25 +01:00
# include "x86_64/regs.h"
#elif ARCH(AARCH64)
# include "aarch64/regs.h"
#elif ARCH(RISCV64)
# include "riscv64/regs.h"
#else
# error Unknown architecture
2021-03-07 16:11:25 +01:00
#endif