We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MEMORY_MAP
1 parent 493639f commit 1ad3ca4Copy full SHA for 1ad3ca4
td-payload/src/mm/mod.rs
@@ -39,7 +39,7 @@ pub const FIRMWARE_BASE: usize = 0xFF00_0000;
39
pub const FIRMWARE_SIZE: usize = 0x100_0000;
40
41
lazy_static! {
42
- static ref MEMORY_MAP: Mutex<[E820Entry; E820_TABLE_SIZE]> =
+ pub static ref MEMORY_MAP: Mutex<[E820Entry; E820_TABLE_SIZE]> =
43
Mutex::new([E820Entry::default(); E820_TABLE_SIZE]);
44
}
45
static END_OF_RAM: Once<usize> = Once::new();
0 commit comments