regs.h 256 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2021, Leon Albrecht <leon2002.la@gmail.com>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Platform.h>
  8. #if ARCH(X86_64)
  9. # include "x86_64/regs.h"
  10. #elif ARCH(AARCH64)
  11. # include "aarch64/regs.h"
  12. #endif