Initial RISC-V implementation

Has no IRQ handling yet
This commit is contained in:
Andrey Turkin
2024-10-20 12:15:09 +03:00
parent db32f5f7a3
commit 1921c6814b
36 changed files with 1999 additions and 57 deletions
+4
View File
@@ -38,6 +38,10 @@ mod arch;
#[path = "arch/x86_64.rs"]
mod arch;
#[cfg(target_arch = "riscv64")]
#[path = "arch/riscv64.rs"]
mod arch;
/// Context struct
pub mod context;