corn/include/shim.h

12 lines
153 B
C
Raw Normal View History

2024-01-29 00:22:09 +00:00
#pragma once
#include <memory.h>
2024-01-30 21:46:38 +00:00
#define CMDLINE_MAX 32
2024-01-29 00:22:09 +00:00
struct boot_info {
struct memory_map *map;
2024-01-30 21:46:38 +00:00
void *acpi_table;
char cmdline[CMDLINE_MAX];
2024-01-29 00:22:09 +00:00
};