feat: Implement a basic MMU configuration

This commit is contained in:
2026-03-08 17:18:57 +01:00
parent 55f410e2bb
commit 6af820815d
13 changed files with 244 additions and 49 deletions

View File

@@ -52,6 +52,8 @@ psr!(SPSR_EL1, u32);
psr!(ELR_EL1, u32);
psr!(SCTLR_EL1, u32);
pub fn read_exception_source_el() -> u32 {
read_spsr_el1() & 0b1111
}