mirror of
https://github.com/usatiuk/ficus.git
synced 2025-10-29 00:27:52 +01:00
19 lines
351 B
C
19 lines
351 B
C
//
|
|
// Created by Stepan Usatiuk on 12.08.2023.
|
|
//
|
|
|
|
#ifndef OS1_LIMINE_MM_H
|
|
#define OS1_LIMINE_MM_H
|
|
|
|
#include "limine.h"
|
|
|
|
#define LIMINE_MM_MAX 256
|
|
|
|
extern unsigned int limine_mm_count;
|
|
extern struct limine_memmap_entry limine_mm_entries[LIMINE_MM_MAX];
|
|
extern unsigned int limine_mm_overflow;
|
|
|
|
void limine_mm_save_response();
|
|
|
|
#endif//OS1_LIMINE_MM_H
|