286 LOADALL can not change PE bit in MSW register when in protected mode. Patch from Greatpsycho.
This commit is contained in:
parent
16b4894b44
commit
4c94ab07c9
1 changed files with 1 additions and 1 deletions
|
|
@ -734,7 +734,7 @@ static int opLOADALL(uint32_t fetchdat)
|
|||
x86gpf(NULL,0);
|
||||
return 1;
|
||||
}
|
||||
msw = readmemw(0, 0x806);
|
||||
msw = (msw & 1) | readmemw(0, 0x806);
|
||||
flags = (readmemw(0, 0x818) & 0xffd5) | 2;
|
||||
flags_extract();
|
||||
tr.seg = readmemw(0, 0x816);
|
||||
|
|
|
|||
Loading…
Reference in a new issue