summaryrefslogtreecommitdiffstats
path: root/private/mvdm/dpmi32/stack.c
blob: 5378aba0194c4c6d46742923da7a20d4b853e55e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*++

Copyright (c) 1992  Microsoft Corporation

Module Name:

    Stack.c

Abstract:

    This module implements routines for manipulating the 16 bit stack

Author:

    Dave Hastings (daveh) 24-Nov-1992

Revision History:

--*/
#include "precomp.h"
#pragma hdrstop
#include "softpc.h"

VOID
DpmiSwitchToDosxStack(
    BOOL ProtectedMode
    )
/*++

Routine Description:

    This routine switches to the dos extender stack, and allocates a
    new frame.

Arguments:

    None.

Return Value:

    None.

--*/
{

    if (ProtectedMode) {
        setSS(DosxPmDataSelector);
    } else {
        setSS(DosxStackSegment);
    }

    setSP(*DosxStackFramePointer);
    *DosxStackFramePointer -= DosxStackFrameSize;
}

VOID
DpmiSwitchFromDosxStack(
    VOID
    )
/*++

Routine Description:

    This routine deallocates a frame from the dosx stack

Arguments:

    None.

Return Value:

    None.

--*/
{
    *DosxStackFramePointer += DosxStackFrameSize;
}

VOID
DpmiPushRmInt(
    USHORT InterruptNumber
    )
/*++

Routine Description:

    This routine pushes an interrupt frame on the stack and sets up cs:ip
    for the specified interrupt.

Arguments:

    InterruptNumber -- Specifies the index of the interrupt

Return Value:

    None.

--*/
{
    PWORD16 StackPointer;
    PULONG Ivt;

    // bugbug stack wrap???

    ASSERT((getSP() > 6));
    ASSERT((!(getMSW() & MSW_PE)));

    StackPointer = (PWORD16)Sim32GetVDMPointer(
        ((getSS() << 16) | getSP()),
        1,
        FALSE
        );

    *(StackPointer - 3) = (USHORT)(RmBopFe & 0x0000FFFF);
    *(StackPointer - 2) = (USHORT)(RmBopFe >> 16);
    *(StackPointer - 1) = getSTATUS();

    setSP(getSP() - 6);

    Ivt = (PULONG)Sim32GetVDMPointer(
        0,
        1,
        FALSE
        );

     setCS((USHORT) (Ivt[InterruptNumber] >> 16));
     setIP((USHORT) (Ivt[InterruptNumber] & 0xFFFF));
}

VOID
DpmiSimulateIretCF(
    VOID
    )
/*++

Routine Description:

    This routine simulates a far return

Arguments:

    None

Return Value:

    None.

Notes:

    This routine does not have to deal with 32 bit stacks, because by
    the time we get here we know we are running on a stack that only
    has 16 bits worth of sp information.  Either the int 21 was executed
    on a 16 bit stack, or we have switched stacks.

--*/
{
    PWORD16 StackPointer;

    StackPointer = (PWORD16)Sim32GetVDMPointer(
        (((ULONG)getSS() << 16) | getSP()),
        1,
//        (UCHAR) (getMSW() & MSW_PE)
        TRUE
        );

    //
    // Return the carry flag from the int 21
    //
    setSTATUS((*(StackPointer + 2) & ~1) | (getSTATUS() & 1));
    setCS(*(StackPointer + 1));
    setIP(*StackPointer);
    setSP(getSP() + 6);
}