corn/include/shim.h
2024-01-30 16:46:38 -05:00

12 lines
153 B
C

#pragma once
#include <memory.h>
#define CMDLINE_MAX 32
struct boot_info {
struct memory_map *map;
void *acpi_table;
char cmdline[CMDLINE_MAX];
};