From 76d21f0e99a0d66bfaf79657919f008699af42dd Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Thu, 10 Sep 2015 14:48:09 +0200 Subject: [PATCH] replace wrong uses of `like` --- _posts/2015-08-25-entering-longmode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2015-08-25-entering-longmode.md b/_posts/2015-08-25-entering-longmode.md index ddf0e466..cbcada5c 100644 --- a/_posts/2015-08-25-entering-longmode.md +++ b/_posts/2015-08-25-entering-longmode.md @@ -352,7 +352,7 @@ gdt64: dw $ - gdt64 - 1 dq gdt64 ``` -The first 2 bytes specify the (GDT length - 1). The `$` is a special symbol that is replaced with the current address (it's equal to `.pointer`). The following 8 bytes specify the GDT address. Labels that start with a point (like `.pointer`) are sub-labels of the last label without point. To access them, they must be prefixed with the parent label (like `gdt64.pointer`). Now we can load the GDT in start: +The first 2 bytes specify the (GDT length - 1). The `$` is a special symbol that is replaced with the current address (it's equal to `.pointer`). The following 8 bytes specify the GDT address. Labels that start with a point (such as `.pointer`) are sub-labels of the last label without point. To access them, they must be prefixed with the parent label (e.g., `gdt64.pointer`). Now we can load the GDT in start: ```nasm start: