diff options
-rw-r--r-- | Lesson_25/README.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Lesson_25/README.md b/Lesson_25/README.md index 5e3da0d..88e3c18 100644 --- a/Lesson_25/README.md +++ b/Lesson_25/README.md @@ -16,4 +16,19 @@ Summary table: | | its own copy | its own copy | its own copy | platfrom | platfrom | + + +| | Fixed at build | Feature Flag | Patchable | Dynamic | DynamicEx | +|---------------|-----------------------------------|-----------------------------------|------------------------------------|--------------------------------------------------------------|--------------------------------------------------------------------| +| .dec section: | [PcdsFixedAtBuild] | [PcdsFeatureFlag] | [PcdsPatchableInModule] | [PcdsDynamic] | [PcdsDynamicEx] | +| .dsc section: | [PcdsFixedAtBuild] | [PcdsFeatureFlag] | [PcdsPatchableInModule] | [PcdsDynamicDefault]<br>[PcdsDynamicHii]<br>[PcdsDynamicVpd] | [PcdsDynamicExDefault]<br>[PcdsDynamicExHii]<br>[PcdsDynamicExVpd] | +| .inf section: | [FixedPcd]<br>[Pcd] | [FeaturePcd]<br>[Pcd] | [PatchPcd]<br>[Pcd] | [Pcd] | [PcdEx] | +| Get: | PcdGet<Type><br>FixedPcdGet<Type> | PcdGetBool<br>FeaturePcdGet | PcdGet<Type><br>PatchPcdGet<Type> | PcdGet<Type> | PcdGet<Type><br>PcdGetEx<Type> | +| Set: | - | - | PcdSet<Type>S<br>PatchPcdSet<Type> | PcdSet<Type>S | PcdSet<Type>S<br>PcdSetEx<Type>S | +| Scope: | Every module have<br>its own copy | Every module have<br>its own copy | Every module have<br>its own copy | Global for<br>platform | Global for<br>platform | + + + + + <Type> = 8|16|32|64|Bool|Ptr |