MushOS  0.1
A UNIX-like OS prototype, written from scratch
Loading...
Searching...
No Matches
modules.h
1#ifndef MUSHOS_MODULES_H
2#define MUSHOS_MODULES_H
3
4#include "../../lib/base/generic.h"
5
6
7void init_module_loading_driver();
8
9void* load_module(u_word offset, u_word length);
10
11#endif //MUSHOS_MODULES_H