17 lines
339 B
C
17 lines
339 B
C
|
|
#ifndef __HOS_MODULE_H__
|
|
#define __HOS_MODULE_H__ __HOS_MODULE_H__
|
|
|
|
#define MOD_REAL_MODE 1
|
|
#define MOD_KERNEL 2
|
|
|
|
typedef struct {
|
|
unsigned int mod_magic; // "HOSM" = 0x484F534D
|
|
unsigned int mod_type; // module type
|
|
void (*init) (); // address of void initialization function
|
|
unsigned int reserved;
|
|
} hos_module_header_t;
|
|
|
|
#endif
|
|
|