mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-18 17:25:19 -04:00
Version 0.16.6
- fixed another bug in reconstructing tailed files - fixed creation of empty output files - statusBar messages replaced by messageBoxes
This commit is contained in:
parent
6c96a243d3
commit
a4a40ec329
4 changed files with 152 additions and 54 deletions
|
@ -53,7 +53,7 @@ typedef struct {
|
|||
|
||||
|
||||
// Component section
|
||||
// Flash parameters dword structure
|
||||
// Flash parameters DWORD structure
|
||||
typedef struct {
|
||||
UINT8 FirstChipDensity : 3;
|
||||
UINT8 SecondChipDensity : 3;
|
||||
|
@ -126,6 +126,13 @@ typedef struct {
|
|||
UINT8 GbeWrite;
|
||||
} FLASH_DESCRIPTOR_MASTER_SECTION;
|
||||
|
||||
// Region access bits in master section
|
||||
#define FLASH_DESCRIPTOR_REGION_ACCESS_DESC 0x01
|
||||
#define FLASH_DESCRIPTOR_REGION_ACCESS_BIOS 0x02
|
||||
#define FLASH_DESCRIPTOR_REGION_ACCESS_ME 0x04
|
||||
#define FLASH_DESCRIPTOR_REGION_ACCESS_GBE 0x08
|
||||
#define FLASH_DESCRIPTOR_REGION_ACCESS_PDR 0x10
|
||||
|
||||
//!TODO: Describe PCH and PROC straps sections, as well as ICC and DMI tables
|
||||
|
||||
// Base address of descriptor upper map
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue