1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-23 07:08:11 +00:00

Merge pull request #216 from QuentinPerez/missing_register

missing register
This commit is contained in:
0xAX 2015-09-27 11:58:25 +06:00
commit a9f8ac57b3

View File

@ -324,7 +324,7 @@ Actually this is the first code that runs (aside from the previous jump instruct
It means that segment registers will have following values after kernel setup starts: It means that segment registers will have following values after kernel setup starts:
``` ```
fs = es = ds = ss = 0x1000 gs = fs = es = ds = ss = 0x1000
cs = 0x1020 cs = 0x1020
``` ```