Rename attributes

This commit is contained in:
Alex Kotov 2022-01-17 11:22:41 +05:00
parent 38a5ee265c
commit e461163b8e
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 3 additions and 3 deletions

View File

@ -16,10 +16,10 @@ extern "C" {
struct KernAux_Mbr_Entry {
uint8_t drive_attributes;
unsigned start_chs_address : 24;
unsigned first_sector_chs_addr : 24;
uint8_t partition_type;
unsigned last_chs_address : 24;
uint32_t start_lba;
unsigned last_sector_chs_addr : 24;
uint32_t first_sector_lba_addr;
uint32_t sectors_count;
}
__attribute__((packed));