MicrOS
mbr.h
Go to the documentation of this file.
1 #ifndef MBR_H
2 #define MBR_H
3 
4 #include "mbr_partition.h"
5 
6 typedef struct mbr
7 {
8  uint8_t bootloader[446];
10  uint16_t end_sign;
11 } mbr;
12 
13 #endif
uint16_t end_sign
Definition: mbr.h:10
mbr_partition partitions[4]
Definition: mbr.h:9
Definition: mbr.h:6
Definition: mbr_partition.h:4
uint8_t bootloader[446]
Definition: mbr.h:8