Add ZXE class header struct to zealbooter.

This commit is contained in:
TomAwezome 2022-08-20 09:05:23 -04:00
parent 325160e13b
commit e5c33074e2

View file

@ -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.