From 7888c9df30f678075371cf1b74e316b97d9b0f95 Mon Sep 17 00:00:00 2001 From: ngiddings Date: Mon, 12 Apr 2021 00:34:43 -0500 Subject: [PATCH] Added header for module struct --- include/module.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 include/module.h 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