1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-03 12:20:56 +00:00

fixing typo in doc

ref. #620
This commit is contained in:
eclissi91 2018-10-03 10:56:31 +02:00 committed by GitHub
parent 8c6d5d5df7
commit cef68c1757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -546,7 +546,7 @@ where:
* `0x66` is the operand-size prefix which allows us to mix 16-bit and 32-bit code
* `0xea` - is the jump opcode
* `in_pm32` is the segment offset or `(cs << 4) + in_pm`
* `in_pm32` is the segment offset under protect mode, which has value `(cs << 4) + in_pm32` derived from real mode
* `__BOOT_CS` is the code segment we want to jump to.
After this we are finally in protected mode: