mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
Add ZXE class header struct to zealbooter.
This commit is contained in:
parent
325160e13b
commit
e5c33074e2
1 changed files with 11 additions and 1 deletions
|
@ -22,8 +22,18 @@ static void done(void) {
|
|||
}
|
||||
}
|
||||
|
||||
struct CKernel {
|
||||
struct CZXE {
|
||||
uint16_t jmp;
|
||||
uint8_t module_align_bits;
|
||||
uint8_t reserved;
|
||||
uint32_t signature;
|
||||
int64_t org;
|
||||
int64_t patch_table_offset;
|
||||
int64_t file_size;
|
||||
};
|
||||
|
||||
struct CKernel {
|
||||
struct CZXE zxe;
|
||||
};
|
||||
|
||||
// The following will be our kernel's entry point.
|
||||
|
|
Loading…
Reference in a new issue