Introduce Overlay Header and LBAs

This commit is contained in:
Jaby
2022-12-04 04:55:53 +01:00
parent 1bfef10a1a
commit eda979e0ef
3 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef __JABYENGINE_OVERLAY__H__
#define __JABYENGINE_OVERLAY__H__
#include "../../stdint.h"
typedef struct __attribute__((packed)) {
void (*execute)();
} OverlayHeader;
typedef struct __attribute__((packed)) {
uint16_t lba;
uint16_t size;
} OverlayLBA;
#endif //!__JABYENGINE_OVERLAY__H__