rename file

This commit is contained in:
amaury 2023-03-15 16:19:29 +01:00
parent f6ec9ff60f
commit 38004e0bc4
3 changed files with 1 additions and 3 deletions

0
src/drivers/drv_disk.rs Normal file
View File

0
src/simulator/disk.rs Normal file
View File

View File

@ -91,9 +91,7 @@ impl <'a>MMU <'_>{
let vpn : u64 = virtAddr/PAGE_SIZE; //virtual page index
let offset : u64 = virtAddr%PAGE_SIZE; //adresse intra page
match &mut mmu.translationTable {
match &mut mmu.translationTable {
None => {
println!("Error from translate : MMU refers to None (No page Table)");
return ExceptionType::ADDRESSERROR_EXCEPTION;