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

16 lines
250 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>
2021-03-07 16:11:25 +01:00
#if ARCH(I386)
# include "i386/regs.h"
#elif ARCH(X86_64)
# include "x86_64/regs.h"
#endif