Преглед изворни кода

Merge pull request #245 from kulbida/fix_typo

fix typo in the bits range
0xAX пре 9 година
родитељ
комит
8ce6b331a8
2 измењених фајлова са 2 додато и 1 уклоњено
  1. 1 1
      Booting/linux-bootstrap-2.md
  2. 1 0
      contributors.md

+ 1 - 1
Booting/linux-bootstrap-2.md

@@ -72,7 +72,7 @@ As mentioned above the GDT contains `segment descriptors` which describe memory
 ------------------------------------------------------------
 ```
 
-Don't worry, I know it looks a little scary after real mode, but it's easy. For example LIMIT 15:0 means that bit 0-15 of the Descriptor contain the value for the limit. The rest of it is in LIMIT 16:19. So, the size of Limit is 0-19 i.e 20-bits. Let's take a closer look at it:
+Don't worry, I know it looks a little scary after real mode, but it's easy. For example LIMIT 15:0 means that bit 0-15 of the Descriptor contain the value for the limit. The rest of it is in LIMIT 19:16. So, the size of Limit is 0-19 i.e 20-bits. Let's take a closer look at it:
 
 1. Limit[20-bits] is at 0-15,16-19 bits. It defines `length_of_segment - 1`. It depends on `G`(Granularity) bit.
 

+ 1 - 0
contributors.md

@@ -73,3 +73,4 @@ Thank you to all contributors:
 * [aouelete](https://github.com/aouelete)
 * [Dennis Birkholz](https://github.com/dennisbirkholz)
 * [Anton Tyurin](https://github.com/noxiouz)
+* [Bogdan Kulbida](https://github.com/kulbida)