1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-06 22:01:06 +00:00

Update linux-bootstrap-1.md

Fixed a simple typo, twice.

("invlalid" -> "invalid")
This commit is contained in:
Steve Kemp 2015-01-04 22:45:32 +00:00
parent 924245b38b
commit fa1b9091d2

View File

@ -373,8 +373,8 @@ Actually, almost all of the setup code is preparation for C language environment
Generally, it can be 3 different cases:
* `ss` has valid value 0x10000 (as all other segment registers beside `cs`)
* `ss` is invlalid and `CAN_USE_HEAP` flag is set (see below)
* `ss` is invlalid and `CAN_USE_HEAP` flag is not set (see below)
* `ss` is invalid and `CAN_USE_HEAP` flag is set (see below)
* `ss` is invalid and `CAN_USE_HEAP` flag is not set (see below)
Let's look at all of these cases: