Next Generation WASM Microkernel Operating System

fix basic address space tests

+3 -4
+3 -4
libs/kmem/src/address_space.rs
··· 444 444 frame_allocator, 445 445 .. 446 446 } = MachineBuilder::<A, parking_lot::RawMutex, _>::new() 447 - .with_memory_regions([0x6000]) 447 + .with_memory_regions([0xA000]) 448 448 .finish_and_bootstrap() 449 449 .unwrap(); 450 450 ··· 484 484 frame_allocator, 485 485 .. 486 486 } = MachineBuilder::<A, parking_lot::RawMutex, _>::new() 487 - .with_memory_regions([0x7000]) 487 + .with_memory_regions([0xB000]) 488 488 .finish_and_bootstrap() 489 489 .unwrap(); 490 490 ··· 547 547 frame_allocator, 548 548 .. 549 549 } = MachineBuilder::<A, parking_lot::RawMutex, _>::new() 550 - .with_memory_regions([0x7000]) 550 + .with_memory_regions([0xB000]) 551 551 .finish_and_bootstrap() 552 552 .unwrap(); 553 553 ··· 603 603 assert_eq!(attrs.allows_execution(), true); 604 604 assert_eq!(lvl.page_size(), 4096); 605 605 } 606 - 607 606 } 608 607 }