diff options
| author | magh <magh@maghmogh.com> | 2023-03-06 18:44:55 -0600 |
|---|---|---|
| committer | magh <magh@maghmogh.com> | 2023-03-06 18:44:55 -0600 |
| commit | e80d9d8871b325a04b18f90a9ea4bb7fd148fb25 (patch) | |
| tree | 79dbdb8506b7ff1e92549188d1b94cfc0b3503ae /tools/src/mcc.h | |
Diffstat (limited to 'tools/src/mcc.h')
| -rw-r--r-- | tools/src/mcc.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/src/mcc.h b/tools/src/mcc.h new file mode 100644 index 0000000..b059d47 --- /dev/null +++ b/tools/src/mcc.h @@ -0,0 +1,19 @@ +/* SPDX-License-Identifier: MIT */ + +#ifndef MCC_H +#define MCC_H + +#include "types.h" + +struct mcc_carveout { + u64 base; + u64 size; +}; + +extern size_t mcc_carveout_count; +extern struct mcc_carveout mcc_carveouts[]; + +int mcc_init(void); +int mcc_unmap_carveouts(void); + +#endif |
