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

Kernel/riscv64: Add RISC-V Processor class

This commit is contained in:
Sönke Holz 2023-10-21 16:23:58 +02:00 committed by Andrew Kaster
parent 24e64cac7e
commit 194bf5a677
7 changed files with 406 additions and 0 deletions

View file

@ -210,6 +210,8 @@ template class ProcessorBase<Processor>;
# include <Kernel/Arch/x86_64/Processor.h>
#elif ARCH(AARCH64)
# include <Kernel/Arch/aarch64/Processor.h>
#elif ARCH(RISCV64)
# include <Kernel/Arch/riscv64/Processor.h>
#else
# error "Unknown architecture"
#endif