Files
quark-kernel/include/module.h

10 lines
151 B
C

#pragma once
#include "types/physaddr.h"
struct module_t
{
physaddr_t start;
physaddr_t end;
char string[64 - 2 * sizeof(physaddr_t)];
};