Memory addressing on XT now wraps at 1MB.
This commit is contained in:
parent
e591f95f8e
commit
3df46b4479
1 changed files with 1 additions and 1 deletions
|
|
@ -639,7 +639,7 @@ void resetx86()
|
||||||
eflags=0;
|
eflags=0;
|
||||||
cgate32=0;
|
cgate32=0;
|
||||||
loadcs(0xFFFF);
|
loadcs(0xFFFF);
|
||||||
rammask=0xFFFFFFFF;
|
rammask = AT ? 0xFFFFFFFF : 0xfffff;
|
||||||
idt.base = 0;
|
idt.base = 0;
|
||||||
flags=2;
|
flags=2;
|
||||||
makeznptable();
|
makeznptable();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue