Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 1 | /* |
| 2 | * DPMI 0.9 emulation |
| 3 | * |
| 4 | * Copyright 1995 Alexandre Julliard |
| 5 | */ |
| 6 | |
| 7 | #include <stdio.h> |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 8 | #include <unistd.h> |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 9 | #include <string.h> |
| 10 | #include "windows.h" |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 11 | #include "heap.h" |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 12 | #include "ldt.h" |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 13 | #include "module.h" |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 14 | #include "miscemu.h" |
Alexandre Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 15 | #include "drive.h" |
| 16 | #include "msdos.h" |
Alexandre Julliard | b1bac32 | 1996-12-15 19:45:59 +0000 | [diff] [blame] | 17 | #include "toolhelp.h" |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 18 | #include "stddebug.h" |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 19 | #include "debug.h" |
| 20 | |
Alexandre Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 21 | #define DOS_GET_DRIVE(reg) ((reg) ? (reg) - 1 : DRIVE_GetCurrentDrive()) |
| 22 | |
Alexandre Julliard | 7ff1c41 | 1997-05-25 13:58:18 +0000 | [diff] [blame] | 23 | void CreateBPB(int drive, BYTE *data); /* defined in int21.c */ |
| 24 | |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 25 | |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 26 | /* Structure for real-mode callbacks */ |
| 27 | typedef 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 Julliard | 9ea19e5 | 1997-01-01 17:29:55 +0000 | [diff] [blame] | 48 | extern void do_mscdex( CONTEXT *context ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 49 | |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 50 | /********************************************************************** |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 51 | * INT_Int31Handler |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 52 | * |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 53 | * Handler for int 31h (DPMI). |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 54 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame^] | 55 | void WINAPI INT_Int31Handler( CONTEXT *context ) |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 56 | { |
| 57 | DWORD dw; |
| 58 | BYTE *ptr; |
| 59 | |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 60 | RESET_CFLAG(context); |
| 61 | switch(AX_reg(context)) |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 62 | { |
| 63 | case 0x0000: /* Allocate LDT descriptors */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 64 | if (!(AX_reg(context) = AllocSelectorArray( CX_reg(context) ))) |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 65 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 66 | AX_reg(context) = 0x8011; /* descriptor unavailable */ |
| 67 | SET_CFLAG(context); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 68 | } |
| 69 | break; |
| 70 | |
| 71 | case 0x0001: /* Free LDT descriptor */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 72 | if (FreeSelector( BX_reg(context) )) |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 73 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 74 | AX_reg(context) = 0x8022; /* invalid selector */ |
| 75 | SET_CFLAG(context); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 76 | } |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 77 | 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 Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 83 | if (!((FS_reg(context)^BX_reg(context)) & ~3)) FS_reg(context) = 0; |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 84 | if (!((GS_reg(context)^BX_reg(context)) & ~3)) GS_reg(context) = 0; |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 85 | } |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 86 | break; |
| 87 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 88 | case 0x0002: /* Real mode segment to descriptor */ |
| 89 | { |
| 90 | WORD entryPoint = 0; /* KERNEL entry point for descriptor */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 91 | switch(BX_reg(context)) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 92 | { |
| 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 Julliard | ac9c9b0 | 1996-07-28 18:50:11 +0000 | [diff] [blame] | 103 | AX_reg(context) = DOSMEM_AllocSelector(BX_reg(context)); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 104 | break; |
| 105 | } |
| 106 | if (entryPoint) |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 107 | AX_reg(context) = LOWORD(MODULE_GetEntryPoint( |
Alexandre Julliard | 2197901 | 1997-03-05 08:22:35 +0000 | [diff] [blame] | 108 | GetModuleHandle16( "KERNEL" ), |
| 109 | entryPoint )); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 110 | } |
| 111 | break; |
| 112 | |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 113 | case 0x0003: /* Get next selector increment */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 114 | AX_reg(context) = __AHINCR; |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 115 | break; |
| 116 | |
| 117 | case 0x0004: /* Lock selector (not supported) */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 118 | AX_reg(context) = 0; /* FIXME: is this a correct return value? */ |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 119 | break; |
| 120 | |
| 121 | case 0x0005: /* Unlock selector (not supported) */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 122 | AX_reg(context) = 0; /* FIXME: is this a correct return value? */ |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 123 | break; |
| 124 | |
| 125 | case 0x0006: /* Get selector base address */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 126 | if (!(dw = GetSelectorBase( BX_reg(context) ))) |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 127 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 128 | AX_reg(context) = 0x8022; /* invalid selector */ |
| 129 | SET_CFLAG(context); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 130 | } |
| 131 | else |
| 132 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 133 | CX_reg(context) = HIWORD(dw); |
| 134 | DX_reg(context) = LOWORD(dw); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 135 | } |
| 136 | break; |
| 137 | |
| 138 | case 0x0007: /* Set selector base address */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 139 | SetSelectorBase( BX_reg(context), |
| 140 | MAKELONG( DX_reg(context), CX_reg(context) ) ); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 141 | break; |
| 142 | |
| 143 | case 0x0008: /* Set selector limit */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 144 | SetSelectorLimit( BX_reg(context), |
| 145 | MAKELONG( DX_reg(context), CX_reg(context) ) ); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 146 | break; |
| 147 | |
| 148 | case 0x0009: /* Set selector access rights */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 149 | SelectorAccessRights( BX_reg(context), 1, CX_reg(context) ); |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 150 | break; |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 151 | |
| 152 | case 0x000a: /* Allocate selector alias */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 153 | if (!(AX_reg(context) = AllocCStoDSAlias( BX_reg(context) ))) |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 154 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 155 | AX_reg(context) = 0x8011; /* descriptor unavailable */ |
| 156 | SET_CFLAG(context); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 157 | } |
| 158 | break; |
| 159 | |
| 160 | case 0x000b: /* Get descriptor */ |
| 161 | { |
| 162 | ldt_entry entry; |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 163 | LDT_GetEntry( SELECTOR_TO_ENTRY( BX_reg(context) ), &entry ); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 164 | /* FIXME: should use ES:EDI for 32-bit clients */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 165 | LDT_EntryToBytes( PTR_SEG_OFF_TO_LIN( ES_reg(context), |
| 166 | DI_reg(context) ), &entry ); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 167 | } |
| 168 | break; |
| 169 | |
| 170 | case 0x000c: /* Set descriptor */ |
| 171 | { |
| 172 | ldt_entry entry; |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 173 | 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 Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 176 | } |
| 177 | break; |
| 178 | |
| 179 | case 0x000d: /* Allocate specific LDT descriptor */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 180 | AX_reg(context) = 0x8011; /* descriptor unavailable */ |
| 181 | SET_CFLAG(context); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 182 | break; |
Alexandre Julliard | 2c69f6d | 1996-09-28 18:11:01 +0000 | [diff] [blame] | 183 | 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 Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 197 | case 0x0204: /* Get protected mode interrupt vector */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 198 | dw = (DWORD)INT_GetHandler( BL_reg(context) ); |
| 199 | CX_reg(context) = HIWORD(dw); |
| 200 | DX_reg(context) = LOWORD(dw); |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 201 | break; |
| 202 | |
| 203 | case 0x0205: /* Set protected mode interrupt vector */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 204 | INT_SetHandler( BL_reg(context), |
| 205 | (FARPROC16)PTR_SEG_OFF_TO_SEGPTR( CX_reg(context), |
| 206 | DX_reg(context) )); |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 207 | break; |
| 208 | |
Alexandre Julliard | af0bae5 | 1995-10-03 17:06:08 +0000 | [diff] [blame] | 209 | 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 Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 214 | RESET_CFLAG(context); |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 215 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 216 | REALMODECALL *p = (REALMODECALL *)PTR_SEG_OFF_TO_LIN( ES_reg(context), DI_reg(context) ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 217 | |
Alexandre Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 218 | 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 Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 230 | break; |
Alexandre Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 231 | case 0x21: /* int21 */ |
Alexandre Julliard | ac9c9b0 | 1996-07-28 18:50:11 +0000 | [diff] [blame] | 232 | switch ((p->eax & 0xFF00)>>8) { |
| 233 | case 0x65: |
| 234 | switch (p->eax & 0xFF) { |
| 235 | case 06:{/* get collate table */ |
Alexandre Julliard | ac9c9b0 | 1996-07-28 18:50:11 +0000 | [diff] [blame] | 236 | 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 Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 240 | table = DOSMEM_MapRealToLinear(MAKELONG(p->edi,p->es)); |
Alexandre Julliard | ac9c9b0 | 1996-07-28 18:50:11 +0000 | [diff] [blame] | 241 | *(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 Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 250 | break; |
| 251 | case 0x44: |
| 252 | switch (p->eax & 0xFF) { |
| 253 | case 0x0D:{/* generic block device request */ |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 254 | BYTE *dataptr = DOSMEM_MapRealToLinear((p->ds)*0x1000+(p->edx & 0xFFFF)); |
Alexandre Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 255 | 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 Julliard | 84c70f5 | 1997-05-09 08:40:27 +0000 | [diff] [blame] | 301 | break; |
Alexandre Julliard | ac9c9b0 | 1996-07-28 18:50:11 +0000 | [diff] [blame] | 302 | default: |
| 303 | SET_CFLAG(context); |
| 304 | break; |
| 305 | } |
| 306 | break; |
Alexandre Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 307 | default: |
| 308 | SET_CFLAG(context); |
| 309 | break; |
Alexandre Julliard | ac9c9b0 | 1996-07-28 18:50:11 +0000 | [diff] [blame] | 310 | } |
Alexandre Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 311 | 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 Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 319 | } |
| 320 | break; |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 321 | case 0x0301: /* Call real mode procedure with far return */ |
| 322 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 323 | REALMODECALL *p = (REALMODECALL *)PTR_SEG_OFF_TO_LIN( ES_reg(context), DI_reg(context) ); |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 324 | 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 Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 329 | SET_CFLAG(context); |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 330 | } |
| 331 | break; |
| 332 | |
| 333 | case 0x0302: /* Call real mode procedure with interrupt return */ |
| 334 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 335 | REALMODECALL *p = (REALMODECALL *)PTR_SEG_OFF_TO_LIN( ES_reg(context), DI_reg(context) ); |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 336 | 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 Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 341 | SET_CFLAG(context); |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 342 | } |
Alexandre Julliard | af0bae5 | 1995-10-03 17:06:08 +0000 | [diff] [blame] | 343 | break; |
| 344 | |
Alexandre Julliard | ac9c9b0 | 1996-07-28 18:50:11 +0000 | [diff] [blame] | 345 | 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 Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 350 | " ESI=%08lx EDI=%08lx ES=%04x DS=%04x CS:IP=%04x:%04x\n" |
| 351 | " Function to call: %04x:%04x\n", |
Alexandre Julliard | ac9c9b0 | 1996-07-28 18:50:11 +0000 | [diff] [blame] | 352 | p->eax, p->ebx, p->ecx, p->edx, |
Alexandre Julliard | 8bbf818 | 1996-09-13 16:50:47 +0000 | [diff] [blame] | 353 | p->esi, p->edi, p->es, p->ds, p->cs, p->ip, |
Alexandre Julliard | 9ea19e5 | 1997-01-01 17:29:55 +0000 | [diff] [blame] | 354 | (WORD)DS_reg(context), SI_reg(context) ); |
Alexandre Julliard | ac9c9b0 | 1996-07-28 18:50:11 +0000 | [diff] [blame] | 355 | SET_CFLAG(context); |
| 356 | } |
| 357 | break; |
| 358 | |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 359 | case 0x0400: /* Get DPMI version */ |
Alexandre Julliard | 349a953 | 1997-02-02 19:01:52 +0000 | [diff] [blame] | 360 | { |
| 361 | SYSTEM_INFO si; |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 362 | |
Alexandre Julliard | 349a953 | 1997-02-02 19:01:52 +0000 | [diff] [blame] | 363 | 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 Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 370 | case 0x0500: /* Get free memory information */ |
Alexandre Julliard | b1bac32 | 1996-12-15 19:45:59 +0000 | [diff] [blame] | 371 | { |
| 372 | MEMMANINFO mmi; |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 373 | |
Alexandre Julliard | b1bac32 | 1996-12-15 19:45:59 +0000 | [diff] [blame] | 374 | 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 Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 383 | case 0x0501: /* Allocate memory block */ |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 384 | if (!(ptr = (BYTE *)HeapAlloc( SystemHeap, 0,MAKELONG( CX_reg(context), |
| 385 | BX_reg(context) )))) |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 386 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 387 | AX_reg(context) = 0x8012; /* linear memory not available */ |
| 388 | SET_CFLAG(context); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 389 | } |
| 390 | else |
| 391 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 392 | BX_reg(context) = SI_reg(context) = HIWORD(ptr); |
| 393 | CX_reg(context) = DI_reg(context) = LOWORD(ptr); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 394 | } |
| 395 | break; |
| 396 | |
| 397 | case 0x0502: /* Free memory block */ |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 398 | HeapFree( SystemHeap, 0, |
| 399 | (void *)MAKELONG( DI_reg(context), SI_reg(context) ) ); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 400 | break; |
| 401 | |
| 402 | case 0x0503: /* Resize memory block */ |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 403 | if (!(ptr = (BYTE *)HeapReAlloc( SystemHeap, 0, |
| 404 | (void *)MAKELONG(DI_reg(context),SI_reg(context)), |
| 405 | MAKELONG(CX_reg(context),BX_reg(context))))) |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 406 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 407 | AX_reg(context) = 0x8012; /* linear memory not available */ |
| 408 | SET_CFLAG(context); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 409 | } |
| 410 | else |
| 411 | { |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 412 | BX_reg(context) = SI_reg(context) = HIWORD(ptr); |
| 413 | CX_reg(context) = DI_reg(context) = LOWORD(ptr); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 414 | } |
| 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 Julliard | 0c126c7 | 1996-02-18 18:44:41 +0000 | [diff] [blame] | 423 | 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 Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 429 | case 0x0604: /* Get page size */ |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 430 | BX_reg(context) = 0; |
| 431 | CX_reg(context) = 4096; |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 432 | break; |
| 433 | |
Alexandre Julliard | 0c126c7 | 1996-02-18 18:44:41 +0000 | [diff] [blame] | 434 | 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 Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 440 | default: |
Alexandre Julliard | ca22b33 | 1996-07-12 19:02:39 +0000 | [diff] [blame] | 441 | INT_BARF( context, 0x31 ); |
| 442 | AX_reg(context) = 0x8001; /* unsupported function */ |
| 443 | SET_CFLAG(context); |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 444 | break; |
| 445 | } |
Alexandre Julliard | bd34d4f | 1995-06-20 19:08:12 +0000 | [diff] [blame] | 446 | } |