1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

Kernel/riscv64: Add register state related headers

This commit is contained in:
Sönke Holz 2023-10-27 12:24:23 +02:00 committed by Andrew Kaster
parent 978cc1c197
commit 24e64cac7e
10 changed files with 260 additions and 0 deletions

View file

@ -19,6 +19,8 @@
# include <Kernel/Arch/x86_64/TrapFrame.h>
#elif ARCH(AARCH64)
# include <Kernel/Arch/aarch64/TrapFrame.h>
#elif ARCH(RISCV64)
# include <Kernel/Arch/riscv64/TrapFrame.h>
#else
# error "Unknown architecture"
#endif