13 lines
304 B
C++
13 lines
304 B
C++
#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__
|