| author | |
| committer | |
| log | a132190cad80669306705b72276e9641401426fb |
| tree | 0a2166cddc53a01f5314a350ad64478a5e64941e |
| parent | ed7328119f2194f1b64085c08c88a5a656bfc597 |
not 100% certain, just noticed that this is implemented slightly differently in rust
https://docs.rs/uefi/0.11.0/src/uefi/table/boot.rs.html#7151 files changed, 1 insertions(+), 0 deletions(-)
lib/std/os/uefi/tables/boot_services.zig+1| ... | @@ -179,6 +179,7 @@ pub const MemoryType = enum(u32) { | ... | @@ -179,6 +179,7 @@ pub const MemoryType = enum(u32) { |
| 179 | 179 | ||
| 180 | pub const MemoryDescriptor = extern struct { | 180 | pub const MemoryDescriptor = extern struct { |
| 181 | type: MemoryType, | 181 | type: MemoryType, |
| 182 | padding: u32, | ||
| 182 | physical_start: u64, | 183 | physical_start: u64, |
| 183 | virtual_start: u64, | 184 | virtual_start: u64, |
| 184 | number_of_pages: usize, | 185 | number_of_pages: usize, |