Added header for module struct
This commit is contained in:
10
include/module.h
Normal file
10
include/module.h
Normal 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)];
|
||||
};
|
||||
Reference in New Issue
Block a user