|
|
|
|
|
by userbinator
2817 days ago
|
|
Yes, initial CS descriptor has base FFFF0000 and limit 0000FFFF, and initial EIP is FFF0. Paging is disabled so first instruction is fetched from physical address FFFFFFF0. This has been true since the 386. See 386 datasheet, page 20: https://media.digikey.com/pdf/Data%20Sheets/Intel%20PDFs/Int... The 8086/8088 is slightly different since it doesn't have protected mode; initial CS:IP is FFFF:0000 which gives a first address of FFFF0. The 286 is closer to the 386+ but its 24-bit address space means the first instruction comes from FFFFF0 instead. |
|