Fixed stack size bug introducted in rev 729.
This commit is contained in:
parent
3fb4eae1b0
commit
8cd767091a
1 changed files with 2 additions and 0 deletions
|
|
@ -440,6 +440,8 @@ void loadseg(uint16_t seg, x86seg *s)
|
||||||
s->access = (3 << 5) | 2;
|
s->access = (3 << 5) | 2;
|
||||||
s->base = seg << 4;
|
s->base = seg << 4;
|
||||||
s->seg = seg;
|
s->seg = seg;
|
||||||
|
if (s == &_ss)
|
||||||
|
stack32 = 0;
|
||||||
s->checked = 1;
|
s->checked = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue