Added header for module struct

This commit is contained in:
2021-04-12 00:34:43 -05:00
parent 41d21bd636
commit 7888c9df30

10
include/module.h Normal file
View File

@@ -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)];
};