Remove reference to nonexistent disk image
This commit is contained in:
parent
b65e885214
commit
b4bd7996f0
4 changed files with 7 additions and 7 deletions
|
|
@ -74,7 +74,7 @@ with a response of 304 ("Not Modified") and the following response headers:
|
|||
X-Powered-By: Express
|
||||
|
||||
And here's where the "blank page" problem occurs: pressing Safari's Reload button. Again, the request looks the same as before,
|
||||
and the response is still be 304 ("Not Modified"), but the page is blank, and the response now looks like:
|
||||
and the response is still 304 ("Not Modified"), but the page is blank, and the response now looks like:
|
||||
|
||||
Date: Mon, 14 Apr 2014 22:21:15 GMT
|
||||
Cache-Control: public, max-age=0
|
||||
|
|
|
|||
|
|
@ -158,9 +158,9 @@ a 16-bit Windows component that manages the Windows 95 installation process:
|
|||
#05C7:6A05 665F POP EDI
|
||||
#05C7:6A07 C3 RET
|
||||
|
||||
Ths above code checks for B1 stepping [Errata #7](/blog/2015/02/23/): "Wrong Register Size for String Instructions
|
||||
in Mixed 16/32-bit Addressing Systems." It returns AX == 0 if the STOSB instruction updated EDI correctly (0xFFFFFFFF)
|
||||
or AX == 1 if EDI is incorrect (0x0000FFFF).
|
||||
Ths above code checks for B1 stepping [Errata #7](/pubs/pc/reference/intel/80386/#b1-errata): "Wrong Register Size for
|
||||
String Instructions in Mixed 16/32-bit Addressing Systems." It returns AX == 0 if the STOSB instruction updated EDI
|
||||
correctly (0xFFFFFFFF) or AX == 1 if EDI is incorrect (0x0000FFFF).
|
||||
|
||||
If Errata #7 is detected, then Windows 95 SETUP displays the following message and aborts:
|
||||
|
||||
|
|
@ -200,7 +200,7 @@ installed, it *will* start up on a B1 stepping.
|
|||
PCjs stepping support is extremely limited at this point. Here's a summary:
|
||||
|
||||
1. 80386 steppings A0-B0 provide *limited* support for the short-lived XBTS and IBTS instructions
|
||||
2. 80386 steppings A0-B1 enable [Errata #7](/blog/2015/02/23/) for STOSB (as tested by Windows 95; see above)
|
||||
2. 80386 steppings A0-B1 enable [Errata #7](/pubs/pc/reference/intel/80386/#b1-errata) for STOSB (as tested by Windows 95; see above)
|
||||
3. 80386 stepping B1 enables 32-bit multiplication errors (as tested by Windows 95; see above)
|
||||
4. 80386 stepping B2 includes all supported B1 errata, but without 32-bit multiplication errors
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue