Supervisor mode

This commit is contained in:
2026-01-30 16:22:53 +01:00
parent 7a25e89d4c
commit 53043fd3cd
11 changed files with 457 additions and 108 deletions

11
src/boot/sbi.rs Normal file
View File

@@ -0,0 +1,11 @@
#[non_exhaustive]
#[repr(u64)]
pub enum EID {
Time = 0x54494D45,
}
#[non_exhaustive]
#[repr(u64)]
pub enum TimeFID {
SetTimer = 0x0,
}