Skip to content

Commit

Permalink
Ok
Browse files Browse the repository at this point in the history
  • Loading branch information
PokeyManatee4 authored Mar 9, 2022
1 parent 295c36d commit 5c48fc7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions kernel/src/efiMemory.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#pragma once
#include <stdint.h>

struct EFI_MEMORY_DESCRIPTOR {
uint32_t type;
void* physAddr;
void* virtAddr;
uint64_t numPages;
uint64_t attribs;
};

extern const char* EFI_MEMORY_TYPE_STRINGS[];

0 comments on commit 5c48fc7

Please sign in to comment.