1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:57:35 +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

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