diff --git a/include/module.h b/include/module.h new file mode 100644 index 0000000..eebad45 --- /dev/null +++ b/include/module.h @@ -0,0 +1,10 @@ +#pragma once + +#include "types/physaddr.h" + +struct module_t +{ + physaddr_t start; + physaddr_t end; + char string[64 - 2 * sizeof(physaddr_t)]; +}; \ No newline at end of file