blob: ae7a85297e1390f99e971842f477c75573ce6dde [file] [log] [blame]
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +00001/*
2 * DPMI 0.9 emulation
3 *
4 * Copyright 1995 Alexandre Julliard
5 */
6
7#include <stdio.h>
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +00008#include <unistd.h>
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +00009#include <string.h>
10#include "windows.h"
Alexandre Julliard18f92e71996-07-17 20:02:21 +000011#include "heap.h"
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000012#include "ldt.h"
Alexandre Julliard7e56f681996-01-31 19:02:28 +000013#include "module.h"
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000014#include "miscemu.h"
Alexandre Julliard8bbf8181996-09-13 16:50:47 +000015#include "drive.h"
16#include "msdos.h"
Alexandre Julliardb1bac321996-12-15 19:45:59 +000017#include "toolhelp.h"
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000018#include "stddebug.h"
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000019#include "debug.h"
20
Alexandre Julliard8bbf8181996-09-13 16:50:47 +000021#define DOS_GET_DRIVE(reg) ((reg) ? (reg) - 1 : DRIVE_GetCurrentDrive())
22
Alexandre Julliard7ff1c411997-05-25 13:58:18 +000023void CreateBPB(int drive, BYTE *data); /* defined in int21.c */
24
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000025
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +000026/* Structure for real-mode callbacks */
27typedef struct
28{
29 DWORD edi;
30 DWORD esi;
31 DWORD ebp;
32 DWORD reserved;
33 DWORD ebx;
34 DWORD edx;
35 DWORD ecx;
36 DWORD eax;
37 WORD flags;
38 WORD es;
39 WORD ds;
40 WORD fs;
41 WORD gs;
42 WORD ip;
43 WORD cs;
44 WORD sp;
45 WORD ss;
46} REALMODECALL;
47
Alexandre Julliard9ea19e51997-01-01 17:29:55 +000048extern void do_mscdex( CONTEXT *context );
Alexandre Julliard7e56f681996-01-31 19:02:28 +000049
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000050/**********************************************************************
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000051 * INT_Int31Handler
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000052 *
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000053 * Handler for int 31h (DPMI).
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000054 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +000055void WINAPI INT_Int31Handler( CONTEXT *context )
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000056{
57 DWORD dw;
58 BYTE *ptr;
59
Alexandre Julliardca22b331996-07-12 19:02:39 +000060 RESET_CFLAG(context);
61 switch(AX_reg(context))
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000062 {
63 case 0x0000: /* Allocate LDT descriptors */
Alexandre Julliardca22b331996-07-12 19:02:39 +000064 if (!(AX_reg(context) = AllocSelectorArray( CX_reg(context) )))
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000065 {
Alexandre Julliardca22b331996-07-12 19:02:39 +000066 AX_reg(context) = 0x8011; /* descriptor unavailable */
67 SET_CFLAG(context);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000068 }
69 break;
70
71 case 0x0001: /* Free LDT descriptor */
Alexandre Julliardca22b331996-07-12 19:02:39 +000072 if (FreeSelector( BX_reg(context) ))
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000073 {
Alexandre Julliardca22b331996-07-12 19:02:39 +000074 AX_reg(context) = 0x8022; /* invalid selector */
75 SET_CFLAG(context);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000076 }
Alexandre Julliard18f92e71996-07-17 20:02:21 +000077 else
78 {
79 /* If a segment register contains the selector being freed, */
80 /* set it to zero. */
81 if (!((DS_reg(context)^BX_reg(context)) & ~3)) DS_reg(context) = 0;
82 if (!((ES_reg(context)^BX_reg(context)) & ~3)) ES_reg(context) = 0;
Alexandre Julliard18f92e71996-07-17 20:02:21 +000083 if (!((FS_reg(context)^BX_reg(context)) & ~3)) FS_reg(context) = 0;
Alexandre Julliard18f92e71996-07-17 20:02:21 +000084 if (!((GS_reg(context)^BX_reg(context)) & ~3)) GS_reg(context) = 0;
Alexandre Julliard18f92e71996-07-17 20:02:21 +000085 }
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +000086 break;
87
Alexandre Julliard7e56f681996-01-31 19:02:28 +000088 case 0x0002: /* Real mode segment to descriptor */
89 {
90 WORD entryPoint = 0; /* KERNEL entry point for descriptor */
Alexandre Julliardca22b331996-07-12 19:02:39 +000091 switch(BX_reg(context))
Alexandre Julliard7e56f681996-01-31 19:02:28 +000092 {
93 case 0x0000: entryPoint = 183; break; /* __0000H */
94 case 0x0040: entryPoint = 193; break; /* __0040H */
95 case 0xa000: entryPoint = 174; break; /* __A000H */
96 case 0xb000: entryPoint = 181; break; /* __B000H */
97 case 0xb800: entryPoint = 182; break; /* __B800H */
98 case 0xc000: entryPoint = 195; break; /* __C000H */
99 case 0xd000: entryPoint = 179; break; /* __D000H */
100 case 0xe000: entryPoint = 190; break; /* __E000H */
101 case 0xf000: entryPoint = 194; break; /* __F000H */
102 default:
Alexandre Julliardac9c9b01996-07-28 18:50:11 +0000103 AX_reg(context) = DOSMEM_AllocSelector(BX_reg(context));
Alexandre Julliard7e56f681996-01-31 19:02:28 +0000104 break;
105 }
106 if (entryPoint)
Alexandre Julliardca22b331996-07-12 19:02:39 +0000107 AX_reg(context) = LOWORD(MODULE_GetEntryPoint(
Alexandre Julliard21979011997-03-05 08:22:35 +0000108 GetModuleHandle16( "KERNEL" ),
109 entryPoint ));
Alexandre Julliard7e56f681996-01-31 19:02:28 +0000110 }
111 break;
112
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000113 case 0x0003: /* Get next selector increment */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000114 AX_reg(context) = __AHINCR;
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000115 break;
116
117 case 0x0004: /* Lock selector (not supported) */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000118 AX_reg(context) = 0; /* FIXME: is this a correct return value? */
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000119 break;
120
121 case 0x0005: /* Unlock selector (not supported) */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000122 AX_reg(context) = 0; /* FIXME: is this a correct return value? */
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000123 break;
124
125 case 0x0006: /* Get selector base address */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000126 if (!(dw = GetSelectorBase( BX_reg(context) )))
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000127 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000128 AX_reg(context) = 0x8022; /* invalid selector */
129 SET_CFLAG(context);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000130 }
131 else
132 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000133 CX_reg(context) = HIWORD(dw);
134 DX_reg(context) = LOWORD(dw);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000135 }
136 break;
137
138 case 0x0007: /* Set selector base address */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000139 SetSelectorBase( BX_reg(context),
140 MAKELONG( DX_reg(context), CX_reg(context) ) );
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000141 break;
142
143 case 0x0008: /* Set selector limit */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000144 SetSelectorLimit( BX_reg(context),
145 MAKELONG( DX_reg(context), CX_reg(context) ) );
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000146 break;
147
148 case 0x0009: /* Set selector access rights */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000149 SelectorAccessRights( BX_reg(context), 1, CX_reg(context) );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000150 break;
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000151
152 case 0x000a: /* Allocate selector alias */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000153 if (!(AX_reg(context) = AllocCStoDSAlias( BX_reg(context) )))
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000154 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000155 AX_reg(context) = 0x8011; /* descriptor unavailable */
156 SET_CFLAG(context);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000157 }
158 break;
159
160 case 0x000b: /* Get descriptor */
161 {
162 ldt_entry entry;
Alexandre Julliardca22b331996-07-12 19:02:39 +0000163 LDT_GetEntry( SELECTOR_TO_ENTRY( BX_reg(context) ), &entry );
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000164 /* FIXME: should use ES:EDI for 32-bit clients */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000165 LDT_EntryToBytes( PTR_SEG_OFF_TO_LIN( ES_reg(context),
166 DI_reg(context) ), &entry );
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000167 }
168 break;
169
170 case 0x000c: /* Set descriptor */
171 {
172 ldt_entry entry;
Alexandre Julliardca22b331996-07-12 19:02:39 +0000173 LDT_BytesToEntry( PTR_SEG_OFF_TO_LIN( ES_reg(context),
174 DI_reg(context) ), &entry );
175 LDT_GetEntry( SELECTOR_TO_ENTRY( BX_reg(context) ), &entry );
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000176 }
177 break;
178
179 case 0x000d: /* Allocate specific LDT descriptor */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000180 AX_reg(context) = 0x8011; /* descriptor unavailable */
181 SET_CFLAG(context);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000182 break;
Alexandre Julliard2c69f6d1996-09-28 18:11:01 +0000183 case 0x0200: /* get real mode interrupt vector */
184 fprintf(stdnimp,
185 "int31: get realmode interupt vector(0x%02x) unimplemented.\n",
186 BL_reg(context)
187 );
188 SET_CFLAG(context);
189 break;
190 case 0x0201: /* set real mode interrupt vector */
191 fprintf(stdnimp,
192 "int31: set realmode interupt vector(0x%02x,0x%04x:0x%04x) unimplemented\n",
193 BL_reg(context),CX_reg(context),DX_reg(context)
194 );
195 SET_CFLAG(context);
196 break;
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000197 case 0x0204: /* Get protected mode interrupt vector */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000198 dw = (DWORD)INT_GetHandler( BL_reg(context) );
199 CX_reg(context) = HIWORD(dw);
200 DX_reg(context) = LOWORD(dw);
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000201 break;
202
203 case 0x0205: /* Set protected mode interrupt vector */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000204 INT_SetHandler( BL_reg(context),
205 (FARPROC16)PTR_SEG_OFF_TO_SEGPTR( CX_reg(context),
206 DX_reg(context) ));
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000207 break;
208
Alexandre Julliardaf0bae51995-10-03 17:06:08 +0000209 case 0x0300: /* Simulate real mode interrupt
210 * Interrupt number is in BL, flags are in BH
211 * ES:DI points to real-mode call structure
212 * Currently we just print it out and return error.
213 */
Alexandre Julliard8bbf8181996-09-13 16:50:47 +0000214 RESET_CFLAG(context);
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +0000215 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000216 REALMODECALL *p = (REALMODECALL *)PTR_SEG_OFF_TO_LIN( ES_reg(context), DI_reg(context) );
Alexandre Julliard7e56f681996-01-31 19:02:28 +0000217
Alexandre Julliard8bbf8181996-09-13 16:50:47 +0000218 switch (BL_reg(context)) {
219 case 0x2f: /* int2f */
220 switch ((p->eax & 0xFF00)>>8) {
221 case 0x15:
222 /* MSCDEX hook */
223 AX_reg(context) = p->eax & 0xFFFF;
224 do_mscdex( context );
225 break;
226 default:
227 SET_CFLAG(context);
228 break;
229 }
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000230 break;
Alexandre Julliard8bbf8181996-09-13 16:50:47 +0000231 case 0x21: /* int21 */
Alexandre Julliardac9c9b01996-07-28 18:50:11 +0000232 switch ((p->eax & 0xFF00)>>8) {
233 case 0x65:
234 switch (p->eax & 0xFF) {
235 case 06:{/* get collate table */
Alexandre Julliardac9c9b01996-07-28 18:50:11 +0000236 char *table;
237 /* ES:DI is a REALMODE pointer to 5 byte dosmem
238 * we fill that with 0x6, realmode pointer to collateTB
239 */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000240 table = DOSMEM_MapRealToLinear(MAKELONG(p->edi,p->es));
Alexandre Julliardac9c9b01996-07-28 18:50:11 +0000241 *(BYTE*)table = 0x06;
242 *(DWORD*)(table+1) = DOSMEM_CollateTable;
243
244 CX_reg(context) = 258;/*FIXME: size of table?*/
245 break;
246 }
247 default:
248 SET_CFLAG(context);
249 }
Alexandre Julliard8bbf8181996-09-13 16:50:47 +0000250 break;
251 case 0x44:
252 switch (p->eax & 0xFF) {
253 case 0x0D:{/* generic block device request */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000254 BYTE *dataptr = DOSMEM_MapRealToLinear((p->ds)*0x1000+(p->edx & 0xFFFF));
Alexandre Julliard8bbf8181996-09-13 16:50:47 +0000255 int drive = DOS_GET_DRIVE(p->ebx&0xFF);
256
257 if ((p->ecx & 0xFF00) != 0x0800) {
258 SET_CFLAG(context);
259 break;
260 }
261 switch (p->ecx & 0xFF) {
262 case 0x66:{
263
264 char label[12],fsname[9],path[4];
265 DWORD serial;
266
267 strcpy(path,"x:\\");path[0]=drive+'A';
268 GetVolumeInformation32A(path,label,12,&serial,NULL,NULL,fsname,9);
269 *(WORD*)dataptr = 0;
270 memcpy(dataptr+2,&serial,4);
271 memcpy(dataptr+6,label ,11);
272 memcpy(dataptr+17,fsname,8);
273 break;
274 }
275 case 0x60: /* get device parameters */
276 /* used by defrag.exe of win95 */
277 memset(dataptr, 0, 0x26);
278 dataptr[0] = 0x04;
279 dataptr[6] = 0; /* media type */
280 if (drive > 1) {
281 dataptr[1] = 0x05; /* fixed disk */
282 setword(&dataptr[2], 0x01); /* non removable */
283 setword(&dataptr[4], 0x300); /* # of cylinders */
284 } else {
285 dataptr[1] = 0x07; /* block dev, floppy */
286 setword(&dataptr[2], 0x02); /* removable */
287 setword(&dataptr[4], 80); /* # of cylinders */
288 }
289 CreateBPB(drive, &dataptr[7]);
290 break;
291 default:
292 SET_CFLAG(context);
293 break;
294 }
295 }
296 break;
297 default:
298 SET_CFLAG(context);
299 break;
300 }
Alexandre Julliard84c70f51997-05-09 08:40:27 +0000301 break;
Alexandre Julliardac9c9b01996-07-28 18:50:11 +0000302 default:
303 SET_CFLAG(context);
304 break;
305 }
306 break;
Alexandre Julliard8bbf8181996-09-13 16:50:47 +0000307 default:
308 SET_CFLAG(context);
309 break;
Alexandre Julliardac9c9b01996-07-28 18:50:11 +0000310 }
Alexandre Julliard8bbf8181996-09-13 16:50:47 +0000311 if (EFL_reg(context)&1) {
312 fprintf(stdnimp,
313 "RealModeInt %02x: EAX=%08lx EBX=%08lx ECX=%08lx EDX=%08lx\n"
314 " ESI=%08lx EDI=%08lx ES=%04x DS=%04x\n",
315 BL_reg(context), p->eax, p->ebx, p->ecx, p->edx,
316 p->esi, p->edi, p->es, p->ds
317 );
318 }
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +0000319 }
320 break;
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +0000321 case 0x0301: /* Call real mode procedure with far return */
322 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000323 REALMODECALL *p = (REALMODECALL *)PTR_SEG_OFF_TO_LIN( ES_reg(context), DI_reg(context) );
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +0000324 fprintf(stdnimp,
325 "RealModeCall: EAX=%08lx EBX=%08lx ECX=%08lx EDX=%08lx\n"
326 " ESI=%08lx EDI=%08lx ES=%04x DS=%04x CS:IP=%04x:%04x\n",
327 p->eax, p->ebx, p->ecx, p->edx,
328 p->esi, p->edi, p->es, p->ds, p->cs, p->ip );
Alexandre Julliardca22b331996-07-12 19:02:39 +0000329 SET_CFLAG(context);
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +0000330 }
331 break;
332
333 case 0x0302: /* Call real mode procedure with interrupt return */
334 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000335 REALMODECALL *p = (REALMODECALL *)PTR_SEG_OFF_TO_LIN( ES_reg(context), DI_reg(context) );
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +0000336 fprintf(stdnimp,
337 "RealModeCallIret: EAX=%08lx EBX=%08lx ECX=%08lx EDX=%08lx\n"
338 " ESI=%08lx EDI=%08lx ES=%04x DS=%04x CS:IP=%04x:%04x\n",
339 p->eax, p->ebx, p->ecx, p->edx,
340 p->esi, p->edi, p->es, p->ds, p->cs, p->ip );
Alexandre Julliardca22b331996-07-12 19:02:39 +0000341 SET_CFLAG(context);
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +0000342 }
Alexandre Julliardaf0bae51995-10-03 17:06:08 +0000343 break;
344
Alexandre Julliardac9c9b01996-07-28 18:50:11 +0000345 case 0x0303: /* Allocate Real Mode Callback Address */
346 {
347 REALMODECALL *p = (REALMODECALL *)PTR_SEG_OFF_TO_LIN( ES_reg(context), DI_reg(context) );
348 fprintf(stdnimp,
349 "AllocRMCB: EAX=%08lx EBX=%08lx ECX=%08lx EDX=%08lx\n"
Alexandre Julliard8bbf8181996-09-13 16:50:47 +0000350 " ESI=%08lx EDI=%08lx ES=%04x DS=%04x CS:IP=%04x:%04x\n"
351 " Function to call: %04x:%04x\n",
Alexandre Julliardac9c9b01996-07-28 18:50:11 +0000352 p->eax, p->ebx, p->ecx, p->edx,
Alexandre Julliard8bbf8181996-09-13 16:50:47 +0000353 p->esi, p->edi, p->es, p->ds, p->cs, p->ip,
Alexandre Julliard9ea19e51997-01-01 17:29:55 +0000354 (WORD)DS_reg(context), SI_reg(context) );
Alexandre Julliardac9c9b01996-07-28 18:50:11 +0000355 SET_CFLAG(context);
356 }
357 break;
358
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000359 case 0x0400: /* Get DPMI version */
Alexandre Julliard349a9531997-02-02 19:01:52 +0000360 {
361 SYSTEM_INFO si;
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000362
Alexandre Julliard349a9531997-02-02 19:01:52 +0000363 GetSystemInfo(&si);
364 AX_reg(context) = 0x005a; /* DPMI version 0.90 */
365 BX_reg(context) = 0x0005; /* Flags: 32-bit, virtual memory */
366 CL_reg(context) = si.wProcessorLevel;
367 DX_reg(context) = 0x0102; /* Master/slave interrupt controller base*/
368 break;
369 }
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000370 case 0x0500: /* Get free memory information */
Alexandre Julliardb1bac321996-12-15 19:45:59 +0000371 {
372 MEMMANINFO mmi;
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000373
Alexandre Julliardb1bac321996-12-15 19:45:59 +0000374 mmi.dwSize = sizeof(mmi);
375 MemManInfo(&mmi);
376 ptr = (BYTE *)PTR_SEG_OFF_TO_LIN(ES_reg(context),DI_reg(context));
377 /* the layout is just the same as MEMMANINFO, but without
378 * the dwSize entry.
379 */
380 memcpy(ptr,((char*)&mmi)+4,sizeof(mmi)-4);
381 break;
382 }
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000383 case 0x0501: /* Allocate memory block */
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000384 if (!(ptr = (BYTE *)HeapAlloc( SystemHeap, 0,MAKELONG( CX_reg(context),
385 BX_reg(context) ))))
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000386 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000387 AX_reg(context) = 0x8012; /* linear memory not available */
388 SET_CFLAG(context);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000389 }
390 else
391 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000392 BX_reg(context) = SI_reg(context) = HIWORD(ptr);
393 CX_reg(context) = DI_reg(context) = LOWORD(ptr);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000394 }
395 break;
396
397 case 0x0502: /* Free memory block */
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000398 HeapFree( SystemHeap, 0,
399 (void *)MAKELONG( DI_reg(context), SI_reg(context) ) );
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000400 break;
401
402 case 0x0503: /* Resize memory block */
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000403 if (!(ptr = (BYTE *)HeapReAlloc( SystemHeap, 0,
404 (void *)MAKELONG(DI_reg(context),SI_reg(context)),
405 MAKELONG(CX_reg(context),BX_reg(context)))))
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000406 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000407 AX_reg(context) = 0x8012; /* linear memory not available */
408 SET_CFLAG(context);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000409 }
410 else
411 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000412 BX_reg(context) = SI_reg(context) = HIWORD(ptr);
413 CX_reg(context) = DI_reg(context) = LOWORD(ptr);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000414 }
415 break;
416
417 case 0x0600: /* Lock linear region */
418 break; /* Just ignore it */
419
420 case 0x0601: /* Unlock linear region */
421 break; /* Just ignore it */
422
Alexandre Julliard0c126c71996-02-18 18:44:41 +0000423 case 0x0602: /* Unlock real-mode region */
424 break; /* Just ignore it */
425
426 case 0x0603: /* Lock real-mode region */
427 break; /* Just ignore it */
428
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +0000429 case 0x0604: /* Get page size */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000430 BX_reg(context) = 0;
431 CX_reg(context) = 4096;
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +0000432 break;
433
Alexandre Julliard0c126c71996-02-18 18:44:41 +0000434 case 0x0702: /* Mark page as demand-paging candidate */
435 break; /* Just ignore it */
436
437 case 0x0703: /* Discard page contents */
438 break; /* Just ignore it */
439
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000440 default:
Alexandre Julliardca22b331996-07-12 19:02:39 +0000441 INT_BARF( context, 0x31 );
442 AX_reg(context) = 0x8001; /* unsupported function */
443 SET_CFLAG(context);
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000444 break;
445 }
Alexandre Julliardbd34d4f1995-06-20 19:08:12 +0000446}