1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

Kernel: Add cross platform RegisterState header and Aarch64 version

A new RegisterState header includes the platform specific RegisterState
header based on the platform being compiled.

The Aarch64 RegisterState header contains stubs for Debug
This commit is contained in:
James Mintram 2021-10-14 23:01:29 +01:00 committed by Linus Groh
parent 0fbeac6011
commit dfe4810c3a
9 changed files with 34 additions and 7 deletions

View file

@ -22,8 +22,8 @@
#include <LibC/mallocdefs.h>
#include <Kernel/Arch/Processor.h>
#include <Kernel/Arch/RegisterState.h>
#include <Kernel/Arch/x86/ISRStubs.h>
#include <Kernel/Arch/x86/RegisterState.h>
#include <Kernel/Arch/x86/TrapFrame.h>
#include <Kernel/KSyms.h>