aboutsummaryrefslogtreecommitdiffstats
path: root/Lesson_20
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2021-06-28 17:46:45 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2021-06-28 17:46:45 +0300
commitec67f73ebcc0c4f9304edfc9264b70d3531f7382 (patch)
treea3d5899c47221d8b299616322836e493b53f8196 /Lesson_20
parent61f0373a3df04323ef130b7d3b610c7cb6504991 (diff)
downloadUEFI-Lessons-ec67f73ebcc0c4f9304edfc9264b70d3531f7382.tar.gz
UEFI-Lessons-ec67f73ebcc0c4f9304edfc9264b70d3531f7382.tar.bz2
UEFI-Lessons-ec67f73ebcc0c4f9304edfc9264b70d3531f7382.zip
Add PcdLib.h link to lesson 20
Diffstat (limited to 'Lesson_20')
-rw-r--r--Lesson_20/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lesson_20/README.md b/Lesson_20/README.md
index 7cce893..1f809ef 100644
--- a/Lesson_20/README.md
+++ b/Lesson_20/README.md
@@ -32,7 +32,7 @@ To use `FixedPcdGet32` in our code we need to add the necessary include:
```
#include <Library/PcdLib.h>
```
-If you check out this file you'll see that `FixedPcdGet32` is simply a define statement:
+If you check out this file (https://github.com/tianocore/edk2/blob/master/MdePkg/Include/Library/PcdLib.h) you'll see that `FixedPcdGet32` is simply a define statement:
```
#define FixedPcdGet32(TokenName) _PCD_VALUE_##TokenName
```