Cover lbas

This commit is contained in:
Jaby
2022-12-04 17:23:45 +01:00
parent eda979e0ef
commit 4cc2094031
3 changed files with 19 additions and 12 deletions

View File

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