4 * Copyright 1995 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
29 #include "wine/winbase16.h"
31 #include "kernel16_private.h"
35 #include "wine/debug.h"
36 #include "wine/exception.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(int31
);
40 /* Structure for real-mode callbacks */
62 typedef struct tagRMCB
{
64 DWORD proc_ofs
,proc_sel
;
65 DWORD regs_ofs
,regs_sel
;
69 static RMCB
*FirstRMCB
= NULL
;
70 static WORD dpmi_flag
;
71 static void* lastvalloced
= NULL
;
72 static BYTE DPMI_retval
;
89 /**********************************************************************
92 * Return TRUE if we are in 32-bit protected mode DOS process.
94 BOOL
DOSVM_IsDos32(void)
96 return (dpmi_flag
& 1) != 0;
100 /**********************************************************************
103 * Allocate a 64k sized selector corresponding to a real mode segment.
105 static WORD
alloc_pm_selector( WORD seg
, unsigned char flags
)
107 WORD sel
= wine_ldt_alloc_entries( 1 );
112 wine_ldt_set_base( &entry
, (void *)(seg
<< 4) );
113 wine_ldt_set_limit( &entry
, 0xffff );
114 wine_ldt_set_flags( &entry
, flags
);
115 wine_ldt_set_entry( sel
, &entry
);
121 /**********************************************************************
122 * dpmi_exception_handler
124 * Handle EXCEPTION_VM86_STI exceptions generated
125 * when there are pending asynchronous events.
127 static LONG WINAPI
dpmi_exception_handler(EXCEPTION_POINTERS
*eptr
)
129 EXCEPTION_RECORD
*rec
= eptr
->ExceptionRecord
;
130 CONTEXT
*context
= eptr
->ContextRecord
;
132 if (rec
->ExceptionCode
== EXCEPTION_VM86_STI
)
135 ERR( "Real mode STI caught by protected mode handler!\n" );
136 DOSVM_SendQueuedEvents(context
);
137 return EXCEPTION_CONTINUE_EXECUTION
;
139 else if (rec
->ExceptionCode
== EXCEPTION_VM86_INTx
)
142 ERR( "Real mode INTx caught by protected mode handler!\n" );
143 DPMI_retval
= (BYTE
)rec
->ExceptionInformation
[0];
144 return EXCEPTION_EXECUTE_HANDLER
;
147 return EXCEPTION_CONTINUE_SEARCH
;
151 /**********************************************************************
152 * INT_GetRealModeContext
154 static void INT_GetRealModeContext( REALMODECALL
*call
, CONTEXT
*context
)
156 context
->Eax
= call
->eax
;
157 context
->Ebx
= call
->ebx
;
158 context
->Ecx
= call
->ecx
;
159 context
->Edx
= call
->edx
;
160 context
->Esi
= call
->esi
;
161 context
->Edi
= call
->edi
;
162 context
->Ebp
= call
->ebp
;
163 context
->EFlags
= call
->fl
| V86_FLAG
;
164 context
->Eip
= call
->ip
;
165 context
->Esp
= call
->sp
;
166 context
->SegCs
= call
->cs
;
167 context
->SegDs
= call
->ds
;
168 context
->SegEs
= call
->es
;
169 context
->SegFs
= call
->fs
;
170 context
->SegGs
= call
->gs
;
171 context
->SegSs
= call
->ss
;
175 /**********************************************************************
176 * INT_SetRealModeContext
178 static void INT_SetRealModeContext( REALMODECALL
*call
, CONTEXT
*context
)
180 call
->eax
= context
->Eax
;
181 call
->ebx
= context
->Ebx
;
182 call
->ecx
= context
->Ecx
;
183 call
->edx
= context
->Edx
;
184 call
->esi
= context
->Esi
;
185 call
->edi
= context
->Edi
;
186 call
->ebp
= context
->Ebp
;
187 call
->fl
= LOWORD(context
->EFlags
);
188 call
->ip
= LOWORD(context
->Eip
);
189 call
->sp
= LOWORD(context
->Esp
);
190 call
->cs
= context
->SegCs
;
191 call
->ds
= context
->SegDs
;
192 call
->es
= context
->SegEs
;
193 call
->fs
= context
->SegFs
;
194 call
->gs
= context
->SegGs
;
195 call
->ss
= context
->SegSs
;
198 /**********************************************************************
200 * special virtualalloc, allocates linearly monoton growing memory.
201 * (the usual VirtualAlloc does not satisfy that restriction)
203 static LPVOID
DPMI_xalloc( DWORD len
)
206 LPVOID oldlastv
= lastvalloced
;
215 ret
= VirtualAlloc( lastvalloced
, len
,
216 MEM_COMMIT
|MEM_RESERVE
, PAGE_EXECUTE_READWRITE
);
218 lastvalloced
= (char *) lastvalloced
+ 0x10000;
220 /* we failed to allocate one in the first round.
223 if (!xflag
&& (lastvalloced
<oldlastv
))
226 FIXME( "failed to allocate linearly growing memory (%u bytes), "
227 "using non-linear growing...\n", len
);
231 /* if we even fail to allocate something in the next
234 if ((xflag
==1) && (lastvalloced
>= oldlastv
))
237 if ((xflag
==2) && (lastvalloced
< oldlastv
)) {
238 FIXME( "failed to allocate any memory of %u bytes!\n", len
);
245 ret
= VirtualAlloc( NULL
, len
,
246 MEM_COMMIT
|MEM_RESERVE
, PAGE_EXECUTE_READWRITE
);
249 lastvalloced
= (LPVOID
)(((DWORD
)ret
+len
+0xffff)&~0xffff);
253 /**********************************************************************
256 static void DPMI_xfree( LPVOID ptr
)
258 VirtualFree( ptr
, 0, MEM_RELEASE
);
261 /**********************************************************************
264 * FIXME: perhaps we could grow this mapped area...
266 static LPVOID
DPMI_xrealloc( LPVOID ptr
, DWORD newsize
)
268 MEMORY_BASIC_INFORMATION mbi
;
274 if (!VirtualQuery(ptr
,&mbi
,sizeof(mbi
)))
276 FIXME( "realloc of DPMI_xallocd region %p?\n", ptr
);
280 if (mbi
.State
== MEM_FREE
)
282 FIXME( "realloc of DPMI_xallocd region %p?\n", ptr
);
286 /* We do not shrink allocated memory. most reallocs
287 * only do grows anyway
289 if (newsize
<= mbi
.RegionSize
)
292 newptr
= DPMI_xalloc( newsize
);
296 memcpy( newptr
, ptr
, mbi
.RegionSize
);
302 return DPMI_xalloc( newsize
);
306 void DPMI_CallRMCB32(RMCB
*rmcb
, UINT16 ss
, DWORD esp
, UINT16
*es
, DWORD
*edi
)
307 #if 0 /* original code, which early gccs puke on */
310 __asm__
__volatile__(
318 ".byte 0x36, 0xff, 0x18\n" /* lcall *%ss:(%eax) */
324 : "=d" (*es
), "=D" (*edi
), "=S" (_clobber
), "=a" (_clobber
), "=c" (_clobber
)
325 : "0" (ss
), "2" (esp
),
326 "4" (rmcb
->regs_sel
), "1" (rmcb
->regs_ofs
),
327 "3" (&rmcb
->proc_ofs
) );
329 #else /* code generated by a gcc new enough */
331 __ASM_GLOBAL_FUNC(DPMI_CallRMCB32
,
333 __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
334 __ASM_CFI(".cfi_rel_offset %ebp,0\n\t")
336 __ASM_CFI(".cfi_def_cfa_register %ebp\n\t")
338 __ASM_CFI(".cfi_rel_offset %edi,-4\n\t")
340 __ASM_CFI(".cfi_rel_offset %esi,-8\n\t")
341 "movl 0x8(%ebp),%eax\n\t"
342 "movl 0x10(%ebp),%esi\n\t"
343 "movl 0xc(%ebp),%edx\n\t"
344 "movl 0x10(%eax),%ecx\n\t"
345 "movl 0xc(%eax),%edi\n\t"
354 ".byte 0x36, 0xff, 0x18\n\t" /* lcall *%ss:(%eax) */
360 "movl 0x14(%ebp),%eax\n\t"
361 "movw %dx,(%eax)\n\t"
362 "movl 0x18(%ebp),%edx\n\t"
363 "movl %edi,(%edx)\n\t"
365 __ASM_CFI(".cfi_same_value %esi\n\t")
367 __ASM_CFI(".cfi_same_value %edi\n\t")
369 __ASM_CFI(".cfi_def_cfa %esp,4\n\t")
370 __ASM_CFI(".cfi_same_value %ebp\n\t")
374 /**********************************************************************
377 * This routine does the hard work of calling a callback procedure.
379 static void DPMI_CallRMCBProc( CONTEXT
*context
, RMCB
*rmcb
, WORD flag
)
381 DWORD old_vif
= get_vm86_teb_info()->dpmi_vif
;
383 /* Disable virtual interrupts. */
384 get_vm86_teb_info()->dpmi_vif
= 0;
386 if (wine_ldt_is_system( rmcb
->proc_sel
)) {
387 /* Wine-internal RMCB, call directly */
388 ((RMCBPROC
)rmcb
->proc_ofs
)(context
);
393 INT_SetRealModeContext(MapSL(MAKESEGPTR( rmcb
->regs_sel
, rmcb
->regs_ofs
)), context
);
394 ss
= alloc_pm_selector( context
->SegSs
, WINE_LDT_FLAGS_DATA
);
397 FIXME("untested!\n");
399 /* The called proc ends with an IRET, and takes these parameters:
400 * DS:ESI = pointer to real-mode SS:SP
401 * ES:EDI = pointer to real-mode call structure
403 * ES:EDI = pointer to real-mode call structure (may be a copy)
404 * It is the proc's responsibility to change the return CS:IP in the
405 * real-mode call structure. */
407 /* 32-bit DPMI client */
408 DPMI_CallRMCB32(rmcb
, ss
, esp
, &es
, &edi
);
410 /* 16-bit DPMI client */
411 CONTEXT ctx
= *context
;
412 ctx
.SegCs
= rmcb
->proc_sel
;
413 ctx
.Eip
= rmcb
->proc_ofs
;
416 ctx
.SegEs
= rmcb
->regs_sel
;
417 ctx
.Edi
= rmcb
->regs_ofs
;
418 /* FIXME: I'm pretty sure this isn't right - should push flags first */
419 WOWCallback16Ex( 0, WCB16_REGS
, 0, NULL
, (DWORD
*)&ctx
);
423 wine_ldt_free_entries( ss
, 1 );
424 INT_GetRealModeContext( MapSL( MAKESEGPTR( es
, edi
)), context
);
425 } __EXCEPT(dpmi_exception_handler
) { } __ENDTRY
427 /* Restore virtual interrupt flag. */
428 get_vm86_teb_info()->dpmi_vif
= old_vif
;
432 /**********************************************************************
435 * This routine does the hard work of calling a real mode procedure.
437 int DPMI_CallRMProc( CONTEXT
*context
, LPWORD stack
, int args
, int iret
)
440 LPVOID addr
= NULL
; /* avoid gcc warning */
442 int alloc
= 0, already
= 0;
445 TRACE("EAX=%08x EBX=%08x ECX=%08x EDX=%08x\n",
446 context
->Eax
, context
->Ebx
, context
->Ecx
, context
->Edx
);
447 TRACE("ESI=%08x EDI=%08x ES=%04x DS=%04x CS:IP=%04x:%04x, %d WORD arguments, %s\n",
448 context
->Esi
, context
->Edi
, context
->SegEs
, context
->SegDs
,
449 context
->SegCs
, LOWORD(context
->Eip
), args
, iret
?"IRET":"FAR" );
453 /* there might be some code that just jumps to RMCBs or the like,
454 in which case following the jumps here might get us to a shortcut */
455 code
= CTX_SEG_OFF_TO_LIN(context
, context
->SegCs
, context
->Eip
);
457 case 0xe9: /* JMP NEAR */
458 context
->Eip
+= 3 + *(WORD
*)(code
+1);
459 /* yeah, I know these gotos don't look good... */
460 goto callrmproc_again
;
461 case 0xea: /* JMP FAR */
462 context
->Eip
= *(WORD
*)(code
+1);
463 context
->SegCs
= *(WORD
*)(code
+3);
464 /* ...but since the label is there anyway... */
465 goto callrmproc_again
;
466 case 0xeb: /* JMP SHORT */
467 context
->Eip
+= 2 + *(signed char *)(code
+1);
468 /* ...because of other gotos below, so... */
469 goto callrmproc_again
;
472 /* shortcut for chaining to internal interrupt handlers */
473 if ((context
->SegCs
== 0xF000) && iret
)
475 DOSVM_CallBuiltinHandler( context
, LOWORD(context
->Eip
)/4 );
479 /* shortcut for RMCBs */
480 CurrRMCB
= FirstRMCB
;
482 while (CurrRMCB
&& (HIWORD(CurrRMCB
->address
) != context
->SegCs
))
483 CurrRMCB
= CurrRMCB
->next
;
485 if (!CurrRMCB
&& !MZ_Current())
487 FIXME("DPMI real-mode call using DOS VM task system, not fully tested!\n");
488 TRACE("creating VM86 task\n");
492 if (!context
->SegSs
) {
493 alloc
= 1; /* allocate default stack */
494 stack16
= addr
= DOSMEM_AllocBlock( 64, (UINT16
*)&(context
->SegSs
) );
498 ERR("could not allocate default stack\n");
502 stack16
= CTX_SEG_OFF_TO_LIN(context
, context
->SegSs
, context
->Esp
);
504 context
->Esp
-= (args
+ (iret
?1:0)) * sizeof(WORD
);
506 if (args
) memcpy(stack16
, stack
, args
*sizeof(WORD
) );
507 /* push flags if iret */
510 *stack16
= LOWORD(context
->EFlags
);
512 /* push return address (return to interrupt wrapper) */
513 *(--stack16
) = DOSVM_dpmi_segments
->wrap_seg
;
516 context
->Esp
-= 2*sizeof(WORD
);
521 /* RMCB call, invoke protected-mode handler directly */
522 DPMI_CallRMCBProc(context
, CurrRMCB
, dpmi_flag
);
523 /* check if we returned to where we thought we would */
524 if ((context
->SegCs
!= DOSVM_dpmi_segments
->wrap_seg
) ||
525 (LOWORD(context
->Eip
) != 0)) {
526 /* we need to continue at different address in real-mode space,
527 so we need to set it all up for real mode again */
528 goto callrmproc_again
;
531 TRACE("entering real mode...\n");
532 DOSVM_Enter( context
);
533 TRACE("returned from real-mode call\n");
535 if (alloc
) DOSMEM_FreeBlock( addr
);
540 /**********************************************************************
543 static void DOSVM_CallRMInt( CONTEXT
*context
)
545 CONTEXT realmode_ctx
;
546 FARPROC16 rm_int
= DOSVM_GetRMHandler( BL_reg(context
) );
547 REALMODECALL
*call
= CTX_SEG_OFF_TO_LIN( context
,
550 INT_GetRealModeContext( call
, &realmode_ctx
);
552 /* we need to check if a real-mode program has hooked the interrupt */
553 if (HIWORD(rm_int
)!=0xF000) {
554 /* yup, which means we need to switch to real mode... */
555 realmode_ctx
.SegCs
= HIWORD(rm_int
);
556 realmode_ctx
.Eip
= LOWORD(rm_int
);
557 if (DPMI_CallRMProc( &realmode_ctx
, NULL
, 0, TRUE
))
560 RESET_CFLAG(context
);
561 /* use the IP we have instead of BL_reg, in case some apps
562 decide to move interrupts around for whatever reason... */
563 DOSVM_CallBuiltinHandler( &realmode_ctx
, LOWORD(rm_int
)/4 );
565 INT_SetRealModeContext( call
, &realmode_ctx
);
569 /**********************************************************************
572 static void DOSVM_CallRMProc( CONTEXT
*context
, int iret
)
574 REALMODECALL
*p
= CTX_SEG_OFF_TO_LIN( context
,
579 TRACE("RealModeCall: EAX=%08x EBX=%08x ECX=%08x EDX=%08x\n",
580 p
->eax
, p
->ebx
, p
->ecx
, p
->edx
);
581 TRACE(" ESI=%08x EDI=%08x ES=%04x DS=%04x CS:IP=%04x:%04x, %d WORD arguments, %s\n",
582 p
->esi
, p
->edi
, p
->es
, p
->ds
, p
->cs
, p
->ip
, CX_reg(context
), iret
?"IRET":"FAR" );
584 if (!(p
->cs
) && !(p
->ip
)) { /* remove this check
585 if Int21/6501 case map function
586 has been implemented */
590 INT_GetRealModeContext(p
, &context16
);
591 DPMI_CallRMProc( &context16
, ((LPWORD
)MapSL(MAKESEGPTR(context
->SegSs
, LOWORD(context
->Esp
))))+3,
592 CX_reg(context
), iret
);
593 INT_SetRealModeContext(p
, &context16
);
597 /* (see dosmem.c, function DOSMEM_InitDPMI) */
598 static void StartPM( CONTEXT
*context
)
600 UINT16 cs
, ss
, ds
, es
;
602 DWORD psp_ofs
= (DWORD
)(DOSVM_psp
<<4);
603 PDB16
*psp
= (PDB16
*)psp_ofs
;
604 HANDLE16 env_seg
= psp
->environment
;
605 unsigned char selflags
= WINE_LDT_FLAGS_DATA
;
607 RESET_CFLAG(context
);
608 dpmi_flag
= AX_reg(context
);
609 /* our mode switch wrapper have placed the desired CS into DX */
610 cs
= alloc_pm_selector( context
->Edx
, WINE_LDT_FLAGS_CODE
);
611 /* due to a flaw in some CPUs (at least mine), it is best to mark stack segments as 32-bit if they
612 can be used in 32-bit code. Otherwise, these CPUs may not set the high word of esp during a
613 ring transition (from kernel code) to the 16-bit stack, and this causes trouble if executing
614 32-bit code using this stack. */
615 if (dpmi_flag
& 1) selflags
|= WINE_LDT_FLAGS_32BIT
;
616 ss
= alloc_pm_selector( context
->SegSs
, selflags
);
617 /* do the same for the data segments, just in case */
618 if (context
->SegDs
== context
->SegSs
) ds
= ss
;
619 else ds
= alloc_pm_selector( context
->SegDs
, selflags
);
620 es
= alloc_pm_selector( DOSVM_psp
, selflags
);
621 /* convert environment pointer, as the spec says, but we're a bit lazy about the size here... */
622 psp
->environment
= alloc_pm_selector( env_seg
, WINE_LDT_FLAGS_DATA
);
625 pm_ctx
.SegCs
= DOSVM_dpmi_segments
->dpmi_sel
;
626 /* our mode switch wrapper expects the new CS in DX, and the new SS in AX */
631 pm_ctx
.SegFs
= wine_get_fs();
632 pm_ctx
.SegGs
= wine_get_gs();
633 pm_ctx
.EFlags
&= ~V86_FLAG
;
635 TRACE("DOS program is now entering %d-bit protected mode\n",
636 DOSVM_IsDos32() ? 32 : 16);
640 WOWCallback16Ex( 0, WCB16_REGS
, 0, NULL
, (DWORD
*)&pm_ctx
);
642 __EXCEPT(dpmi_exception_handler
)
647 TRACE( "Protected mode DOS program is terminating\n" );
650 * FIXME: Instead of calling DOSVM_Exit, we should release all
651 * allocated protected mode resources and call MZ_Exit
652 * using real mode context. See DPMI specification.
654 DOSVM_Exit( DPMI_retval
);
657 wine_ldt_free_entries( psp
->environment
, 1 );
658 psp
->environment
= env_seg
;
659 wine_ldt_free_entries(es
,1);
660 if (ds
!= ss
) wine_ldt_free_entries(ds
,1);
661 wine_ldt_free_entries(ss
,1);
662 wine_ldt_free_entries(cs
,1);
666 static RMCB
*DPMI_AllocRMCB( void )
668 RMCB
*NewRMCB
= HeapAlloc(GetProcessHeap(), 0, sizeof(RMCB
));
673 LPVOID RMCBmem
= DOSMEM_AllocBlock(4, &uParagraph
);
676 *p
++ = 0xcd; /* RMCB: */
677 *p
++ = 0x31; /* int $0x31 */
678 /* it is the called procedure's task to change the return CS:EIP
679 the DPMI 0.9 spec states that if it doesn't, it will be called again */
681 *p
++ = 0xfc; /* jmp RMCB */
682 NewRMCB
->address
= MAKELONG(0, uParagraph
);
683 NewRMCB
->next
= FirstRMCB
;
690 FARPROC16
DPMI_AllocInternalRMCB( RMCBPROC proc
)
692 RMCB
*NewRMCB
= DPMI_AllocRMCB();
695 NewRMCB
->proc_ofs
= (DWORD
)proc
;
696 NewRMCB
->proc_sel
= 0;
697 NewRMCB
->regs_ofs
= 0;
698 NewRMCB
->regs_sel
= 0;
699 return (FARPROC16
)(NewRMCB
->address
);
705 static int DPMI_FreeRMCB( DWORD address
)
707 RMCB
*CurrRMCB
= FirstRMCB
;
708 RMCB
*PrevRMCB
= NULL
;
710 while (CurrRMCB
&& (CurrRMCB
->address
!= address
))
713 CurrRMCB
= CurrRMCB
->next
;
718 PrevRMCB
->next
= CurrRMCB
->next
;
720 FirstRMCB
= CurrRMCB
->next
;
721 DOSMEM_FreeBlock(PTR_REAL_TO_LIN(SELECTOROF(CurrRMCB
->address
),OFFSETOF(CurrRMCB
->address
)));
722 HeapFree(GetProcessHeap(), 0, CurrRMCB
);
729 /**********************************************************************
730 * DOSVM_RawModeSwitchHandler
732 * DPMI Raw Mode Switch handler
734 void WINAPI
DOSVM_RawModeSwitchHandler( CONTEXT
*context
)
739 /* initialize real-mode context as per spec */
740 memset(&rm_ctx
, 0, sizeof(rm_ctx
));
741 rm_ctx
.SegDs
= AX_reg(context
);
742 rm_ctx
.SegEs
= CX_reg(context
);
743 rm_ctx
.SegSs
= DX_reg(context
);
744 rm_ctx
.Esp
= context
->Ebx
;
745 rm_ctx
.SegCs
= SI_reg(context
);
746 rm_ctx
.Eip
= context
->Edi
;
747 rm_ctx
.Ebp
= context
->Ebp
;
751 /* Copy interrupt state. */
752 if (get_vm86_teb_info()->dpmi_vif
)
753 rm_ctx
.EFlags
= V86_FLAG
| VIF_MASK
;
755 rm_ctx
.EFlags
= V86_FLAG
;
757 /* enter real mode again */
758 TRACE("re-entering real mode at %04x:%04x\n",rm_ctx
.SegCs
,rm_ctx
.Eip
);
759 ret
= DOSVM_Enter( &rm_ctx
);
760 /* when the real-mode stuff call its mode switch address,
761 DOSVM_Enter will return and we will continue here */
765 /* if the sync was lost, there's no way to recover */
769 /* alter protected-mode context as per spec */
770 context
->SegDs
= LOWORD(rm_ctx
.Eax
);
771 context
->SegEs
= LOWORD(rm_ctx
.Ecx
);
772 context
->SegSs
= LOWORD(rm_ctx
.Edx
);
773 context
->Esp
= rm_ctx
.Ebx
;
774 context
->SegCs
= LOWORD(rm_ctx
.Esi
);
775 context
->Eip
= rm_ctx
.Edi
;
776 context
->Ebp
= rm_ctx
.Ebp
;
780 /* Copy interrupt state. */
781 if (rm_ctx
.EFlags
& VIF_MASK
)
782 get_vm86_teb_info()->dpmi_vif
= 1;
784 get_vm86_teb_info()->dpmi_vif
= 0;
786 /* Return to new address and hope that we didn't mess up */
787 TRACE("re-entering protected mode at %04x:%08x\n",
788 context
->SegCs
, context
->Eip
);
792 /**********************************************************************
795 static void DOSVM_AllocRMCB( CONTEXT
*context
)
797 RMCB
*NewRMCB
= DPMI_AllocRMCB();
799 TRACE("Function to call: %04x:%04x\n", (WORD
)context
->SegDs
, SI_reg(context
) );
803 NewRMCB
->proc_ofs
= DOSVM_IsDos32() ? context
->Esi
: LOWORD(context
->Esi
);
804 NewRMCB
->proc_sel
= context
->SegDs
;
805 NewRMCB
->regs_ofs
= DOSVM_IsDos32() ? context
->Edi
: LOWORD(context
->Edi
);
806 NewRMCB
->regs_sel
= context
->SegEs
;
807 SET_CX( context
, HIWORD(NewRMCB
->address
) );
808 SET_DX( context
, LOWORD(NewRMCB
->address
) );
812 SET_AX( context
, 0x8015 ); /* callback unavailable */
818 /**********************************************************************
821 static void DOSVM_FreeRMCB( CONTEXT
*context
)
823 FIXME("callback address: %04x:%04x\n",
824 CX_reg(context
), DX_reg(context
));
826 if (DPMI_FreeRMCB(MAKELONG(DX_reg(context
), CX_reg(context
)))) {
827 SET_AX( context
, 0x8024 ); /* invalid callback address */
833 static BYTE
* XMS_Offset( MOVEOFS
*ofs
)
835 if (ofs
->Handle
) return (BYTE
*)GlobalLock16(ofs
->Handle
)+ofs
->Offset
;
836 else return PTR_REAL_TO_LIN(SELECTOROF(ofs
->Offset
),OFFSETOF(ofs
->Offset
));
839 /**********************************************************************
842 static void XMS_Handler( CONTEXT
*context
)
844 switch(AH_reg(context
))
846 case 0x00: /* Get XMS version number */
847 TRACE("get XMS version number\n");
848 SET_AX( context
, 0x0200 ); /* 2.0 */
849 SET_BX( context
, 0x0000 ); /* internal revision */
850 SET_DX( context
, 0x0001 ); /* HMA exists */
852 case 0x08: /* Query Free Extended Memory */
856 TRACE("query free extended memory\n");
857 GlobalMemoryStatus( &status
);
858 SET_DX( context
, status
.dwAvailVirtual
>> 10 );
859 SET_AX( context
, status
.dwAvailVirtual
>> 10 );
860 TRACE("returning largest %dK, total %dK\n", AX_reg(context
), DX_reg(context
));
863 case 0x09: /* Allocate Extended Memory Block */
864 TRACE("allocate extended memory block (%dK)\n",
866 SET_DX( context
, GlobalAlloc16(GMEM_MOVEABLE
, (DWORD
)DX_reg(context
)<<10) );
867 SET_AX( context
, DX_reg(context
) ? 1 : 0 );
868 if (!DX_reg(context
)) SET_BL( context
, 0xA0 ); /* out of memory */
870 case 0x0a: /* Free Extended Memory Block */
871 TRACE("free extended memory block %04x\n",DX_reg(context
));
872 if(!DX_reg(context
) || GlobalFree16(DX_reg(context
))) {
873 SET_AX( context
, 0 ); /* failure */
874 SET_BL( context
, 0xa2 ); /* invalid handle */
876 SET_AX( context
, 1 ); /* success */
878 case 0x0b: /* Move Extended Memory Block */
880 MOVESTRUCT
*move
=CTX_SEG_OFF_TO_LIN(context
,
881 context
->SegDs
,context
->Esi
);
883 TRACE("move extended memory block\n");
884 src
=XMS_Offset(&move
->Source
);
885 dst
=XMS_Offset(&move
->Dest
);
886 memcpy(dst
,src
,move
->Length
);
887 if (move
->Source
.Handle
) GlobalUnlock16(move
->Source
.Handle
);
888 if (move
->Dest
.Handle
) GlobalUnlock16(move
->Dest
.Handle
);
891 case 0x88: /* Query Any Free Extended Memory */
896 TRACE("query any free extended memory\n");
898 GlobalMemoryStatus( &status
);
899 GetSystemInfo( &info
);
900 context
->Eax
= status
.dwAvailVirtual
>> 10;
901 context
->Edx
= status
.dwAvailVirtual
>> 10;
902 context
->Ecx
= (DWORD
)info
.lpMaximumApplicationAddress
;
903 SET_BL( context
, 0 ); /* No errors. */
905 TRACE("returning largest %dK, total %dK, highest 0x%x\n",
906 context
->Eax
, context
->Edx
, context
->Ecx
);
910 INT_BARF( context
, 0x31 );
911 SET_AX( context
, 0x0000 ); /* failure */
912 SET_BL( context
, 0x80 ); /* function not implemented */
918 /**********************************************************************
919 * DOSVM_CheckWrappers
921 * Check if this was really a wrapper call instead of an interrupt.
923 BOOL
DOSVM_CheckWrappers( CONTEXT
*context
)
925 if (context
->SegCs
==DOSVM_dpmi_segments
->dpmi_seg
) {
926 /* This is the protected mode switch */
930 else if (context
->SegCs
==DOSVM_dpmi_segments
->xms_seg
)
932 /* This is the XMS driver entry point */
933 XMS_Handler(context
);
939 RMCB
*CurrRMCB
= FirstRMCB
;
941 while (CurrRMCB
&& (HIWORD(CurrRMCB
->address
) != context
->SegCs
))
942 CurrRMCB
= CurrRMCB
->next
;
945 /* RMCB call, propagate to protected-mode handler */
946 DPMI_CallRMCBProc(context
, CurrRMCB
, dpmi_flag
);
954 /**********************************************************************
957 * Handler for int 31h (DPMI).
959 void WINAPI
DOSVM_Int31Handler( CONTEXT
*context
)
961 RESET_CFLAG(context
);
962 switch(AX_reg(context
))
964 case 0x0000: /* Allocate LDT descriptors */
965 TRACE( "allocate LDT descriptors (%d)\n", CX_reg(context
) );
967 WORD sel
= AllocSelectorArray16( CX_reg(context
) );
971 SET_AX( context
, 0x8011 ); /* descriptor unavailable */
972 SET_CFLAG( context
);
976 TRACE( "success, array starts at 0x%04x\n", sel
);
977 SET_AX( context
, sel
);
982 case 0x0001: /* Free LDT descriptor */
983 TRACE( "free LDT descriptor (0x%04x)\n", BX_reg(context
) );
984 if (FreeSelector16( BX_reg(context
) ))
986 SET_AX( context
, 0x8022 ); /* invalid selector */
987 SET_CFLAG( context
);
991 /* If a segment register contains the selector being freed, */
992 /* set it to zero. */
993 if (!((context
->SegDs
^BX_reg(context
)) & ~3)) context
->SegDs
= 0;
994 if (!((context
->SegEs
^BX_reg(context
)) & ~3)) context
->SegEs
= 0;
995 if (!((context
->SegFs
^BX_reg(context
)) & ~3)) context
->SegFs
= 0;
996 if (!((context
->SegGs
^BX_reg(context
)) & ~3)) context
->SegGs
= 0;
1000 case 0x0002: /* Real mode segment to descriptor */
1001 TRACE( "real mode segment to descriptor (0x%04x)\n", BX_reg(context
) );
1003 WORD entryPoint
= 0; /* KERNEL entry point for descriptor */
1004 switch(BX_reg(context
))
1006 case 0x0000: entryPoint
= 183; break; /* __0000H */
1007 case 0x0040: entryPoint
= 193; break; /* __0040H */
1008 case 0xa000: entryPoint
= 174; break; /* __A000H */
1009 case 0xb000: entryPoint
= 181; break; /* __B000H */
1010 case 0xb800: entryPoint
= 182; break; /* __B800H */
1011 case 0xc000: entryPoint
= 195; break; /* __C000H */
1012 case 0xd000: entryPoint
= 179; break; /* __D000H */
1013 case 0xe000: entryPoint
= 190; break; /* __E000H */
1014 case 0xf000: entryPoint
= 194; break; /* __F000H */
1016 FIXME("Real mode segment (%x) to descriptor: no longer supported\n",
1018 SET_CFLAG( context
);
1023 FARPROC16 proc
= GetProcAddress16( GetModuleHandle16( "KERNEL" ),
1024 (LPCSTR
)(ULONG_PTR
)entryPoint
);
1025 SET_AX( context
, LOWORD(proc
) );
1030 case 0x0003: /* Get next selector increment */
1031 TRACE("get selector increment (__AHINCR)\n");
1032 context
->Eax
= __AHINCR
;
1035 case 0x0004: /* Lock selector (not supported) */
1036 FIXME("lock selector not supported\n");
1037 context
->Eax
= 0; /* FIXME: is this a correct return value? */
1040 case 0x0005: /* Unlock selector (not supported) */
1041 FIXME("unlock selector not supported\n");
1042 context
->Eax
= 0; /* FIXME: is this a correct return value? */
1045 case 0x0006: /* Get selector base address */
1046 TRACE( "get selector base address (0x%04x)\n", BX_reg(context
) );
1049 WORD sel
= BX_reg(context
);
1050 wine_ldt_get_entry( sel
, &entry
);
1051 if (wine_ldt_is_empty(&entry
))
1053 context
->Eax
= 0x8022; /* invalid selector */
1058 void *base
= wine_ldt_get_base(&entry
);
1059 SET_CX( context
, HIWORD(base
) );
1060 SET_DX( context
, LOWORD(base
) );
1065 case 0x0007: /* Set selector base address */
1067 DWORD base
= MAKELONG( DX_reg(context
), CX_reg(context
) );
1068 WORD sel
= BX_reg(context
);
1069 TRACE( "set selector base address (0x%04x,0x%08x)\n", sel
, base
);
1071 /* check if Win16 app wants to access lower 64K of DOS memory */
1072 if (base
< 0x10000 && DOSVM_IsWin16())
1073 DOSMEM_MapDosLayout();
1075 SetSelectorBase( sel
, base
);
1079 case 0x0008: /* Set selector limit */
1081 DWORD limit
= MAKELONG( DX_reg(context
), CX_reg(context
) );
1082 TRACE( "set selector limit (0x%04x,0x%08x)\n",
1083 BX_reg(context
), limit
);
1084 SetSelectorLimit16( BX_reg(context
), limit
);
1088 case 0x0009: /* Set selector access rights */
1089 TRACE( "set selector access rights(0x%04x,0x%04x)\n",
1090 BX_reg(context
), CX_reg(context
) );
1091 SelectorAccessRights16( BX_reg(context
), 1, CX_reg(context
) );
1094 case 0x000a: /* Allocate selector alias */
1095 TRACE( "allocate selector alias (0x%04x)\n", BX_reg(context
) );
1096 SET_AX( context
, AllocCStoDSAlias16( BX_reg(context
) ) );
1097 if (!AX_reg(context
))
1099 SET_AX( context
, 0x8011 ); /* descriptor unavailable */
1104 case 0x000b: /* Get descriptor */
1105 TRACE( "get descriptor (0x%04x)\n", BX_reg(context
) );
1107 LDT_ENTRY
*entry
= CTX_SEG_OFF_TO_LIN( context
, context
->SegEs
,
1109 wine_ldt_get_entry( BX_reg(context
), entry
);
1113 case 0x000c: /* Set descriptor */
1114 TRACE( "set descriptor (0x%04x)\n", BX_reg(context
) );
1116 LDT_ENTRY
*entry
= CTX_SEG_OFF_TO_LIN( context
, context
->SegEs
,
1118 wine_ldt_set_entry( BX_reg(context
), entry
);
1122 case 0x000d: /* Allocate specific LDT descriptor */
1123 FIXME( "allocate descriptor (0x%04x), stub!\n", BX_reg(context
) );
1124 SET_AX( context
, 0x8011 ); /* descriptor unavailable */
1125 SET_CFLAG( context
);
1128 case 0x000e: /* Get Multiple Descriptors (1.0) */
1129 FIXME( "get multiple descriptors - unimplemented\n" );
1132 case 0x000f: /* Set Multiple Descriptors (1.0) */
1133 FIXME( "set multiple descriptors - unimplemented\n" );
1136 case 0x0100: /* Allocate DOS memory block */
1137 TRACE( "allocate DOS memory block (0x%x paragraphs)\n", BX_reg(context
) );
1139 DWORD dw
= GlobalDOSAlloc16( (DWORD
)BX_reg(context
) << 4 );
1141 SET_AX( context
, HIWORD(dw
) );
1142 SET_DX( context
, LOWORD(dw
) );
1144 SET_AX( context
, 0x0008 ); /* insufficient memory */
1145 SET_BX( context
, DOSMEM_Available() >> 4 );
1151 case 0x0101: /* Free DOS memory block */
1152 TRACE( "free DOS memory block (0x%04x)\n", DX_reg(context
) );
1154 WORD error
= GlobalDOSFree16( DX_reg(context
) );
1156 SET_AX( context
, 0x0009 ); /* memory block address invalid */
1157 SET_CFLAG( context
);
1162 case 0x0102: /* Resize DOS Memory Block */
1163 FIXME( "resize DOS memory block (0x%04x, 0x%x paragraphs) - unimplemented\n",
1164 DX_reg(context
), BX_reg(context
) );
1167 case 0x0200: /* get real mode interrupt vector */
1168 TRACE( "get realmode interrupt vector (0x%02x)\n",
1171 FARPROC16 proc
= DOSVM_GetRMHandler( BL_reg(context
) );
1172 SET_CX( context
, SELECTOROF(proc
) );
1173 SET_DX( context
, OFFSETOF(proc
) );
1177 case 0x0201: /* set real mode interrupt vector */
1178 TRACE( "set realmode interrupt vector (0x%02x, 0x%04x:0x%04x)\n",
1179 BL_reg(context
), CX_reg(context
), DX_reg(context
) );
1180 DOSVM_SetRMHandler( BL_reg(context
),
1181 (FARPROC16
)MAKESEGPTR(CX_reg(context
), DX_reg(context
)) );
1184 case 0x0202: /* Get Processor Exception Handler Vector */
1185 FIXME( "Get Processor Exception Handler Vector (0x%02x)\n",
1187 if (DOSVM_IsDos32())
1189 SET_CX( context
, 0 );
1194 SET_CX( context
, 0 );
1195 SET_DX( context
, 0 );
1199 case 0x0203: /* Set Processor Exception Handler Vector */
1200 FIXME( "Set Processor Exception Handler Vector (0x%02x)\n",
1204 case 0x0204: /* Get protected mode interrupt vector */
1205 TRACE("get protected mode interrupt handler (0x%02x)\n",
1207 if (DOSVM_IsDos32())
1209 FARPROC48 handler
= DOSVM_GetPMHandler48( BL_reg(context
) );
1210 SET_CX( context
, handler
.selector
);
1211 context
->Edx
= handler
.offset
;
1215 FARPROC16 handler
= DOSVM_GetPMHandler16( BL_reg(context
) );
1216 SET_CX( context
, SELECTOROF(handler
) );
1217 SET_DX( context
, OFFSETOF(handler
) );
1221 case 0x0205: /* Set protected mode interrupt vector */
1222 TRACE("set protected mode interrupt handler (0x%02x,0x%04x:0x%08x)\n",
1223 BL_reg(context
), CX_reg(context
), context
->Edx
);
1224 if (DOSVM_IsDos32())
1227 handler
.selector
= CX_reg(context
);
1228 handler
.offset
= context
->Edx
;
1229 DOSVM_SetPMHandler48( BL_reg(context
), handler
);
1234 handler
= (FARPROC16
)MAKESEGPTR( CX_reg(context
), DX_reg(context
));
1235 DOSVM_SetPMHandler16( BL_reg(context
), handler
);
1239 case 0x0300: /* Simulate real mode interrupt */
1240 TRACE( "Simulate real mode interrupt %02x.\n", BL_reg(context
));
1241 DOSVM_CallRMInt( context
);
1244 case 0x0301: /* Call real mode procedure with far return */
1245 TRACE( "Call real mode procedure with far return.\n" );
1246 DOSVM_CallRMProc( context
, FALSE
);
1249 case 0x0302: /* Call real mode procedure with interrupt return */
1250 TRACE( "Call real mode procedure with interrupt return.\n" );
1251 DOSVM_CallRMProc( context
, TRUE
);
1254 case 0x0303: /* Allocate Real Mode Callback Address */
1255 TRACE( "Allocate real mode callback address.\n" );
1256 DOSVM_AllocRMCB( context
);
1259 case 0x0304: /* Free Real Mode Callback Address */
1260 TRACE( "Free real mode callback address.\n" );
1261 DOSVM_FreeRMCB( context
);
1264 case 0x0305: /* Get State Save/Restore Addresses */
1265 TRACE("get state save/restore addresses\n");
1266 /* we probably won't need this kind of state saving */
1267 SET_AX( context
, 0 );
1269 /* real mode: just point to the lret */
1270 SET_BX( context
, DOSVM_dpmi_segments
->wrap_seg
);
1271 SET_CX( context
, 2 );
1273 /* protected mode: don't have any handler yet... */
1274 /* FIXME: Use DI in 16-bit DPMI and EDI in 32-bit DPMI */
1275 FIXME("no protected-mode dummy state save/restore handler yet\n");
1276 SET_SI( context
, 0 );
1280 case 0x0306: /* Get Raw Mode Switch Addresses */
1281 TRACE("get raw mode switch addresses\n");
1283 /* real mode, point to standard DPMI return wrapper */
1284 SET_BX( context
, DOSVM_dpmi_segments
->wrap_seg
);
1285 SET_CX( context
, 0 );
1287 /* protected mode, point to DPMI call wrapper */
1288 /* FIXME: Use DI in 16-bit DPMI and EDI in 32-bit DPMI */
1289 /* FIXME: Doesn't work in DPMI32... */
1290 SET_SI( context
, DOSVM_dpmi_segments
->dpmi_sel
);
1291 context
->Edi
= 8; /* offset of the INT 0x31 call */
1294 case 0x0400: /* Get DPMI version */
1295 TRACE("get DPMI version\n");
1300 SET_AX( context
, 0x005a ); /* DPMI version 0.90 */
1301 SET_BX( context
, 0x0005 ); /* Flags: 32-bit, virtual memory */
1302 SET_CL( context
, si
.wProcessorLevel
);
1303 SET_DX( context
, 0x0870 ); /* Master/slave interrupt controller base */
1307 case 0x0401: /* Get DPMI Capabilities (1.0) */
1308 FIXME( "get dpmi capabilities - unimplemented\n");
1311 case 0x0500: /* Get free memory information */
1312 TRACE("get free memory information\n");
1314 MEMORYSTATUS status
;
1315 SYSTEM_BASIC_INFORMATION sbi
;
1317 /* the layout is just the same as MEMMANINFO, but without
1322 DWORD dwLargestFreeBlock
;
1323 DWORD dwMaxPagesAvailable
;
1324 DWORD dwMaxPagesLockable
;
1325 DWORD dwTotalLinearSpace
;
1326 DWORD dwTotalUnlockedPages
;
1329 DWORD dwFreeLinearSpace
;
1330 DWORD dwSwapFilePages
;
1332 } *info
= CTX_SEG_OFF_TO_LIN( context
, context
->SegEs
, context
->Edi
);
1334 GlobalMemoryStatus( &status
);
1335 NtQuerySystemInformation( SystemBasicInformation
, &sbi
, sizeof(sbi
), NULL
);
1337 info
->wPageSize
= sbi
.PageSize
;
1338 info
->dwLargestFreeBlock
= status
.dwAvailVirtual
;
1339 info
->dwMaxPagesAvailable
= info
->dwLargestFreeBlock
/ info
->wPageSize
;
1340 info
->dwMaxPagesLockable
= info
->dwMaxPagesAvailable
;
1341 info
->dwTotalLinearSpace
= status
.dwTotalVirtual
/ info
->wPageSize
;
1342 info
->dwTotalUnlockedPages
= info
->dwTotalLinearSpace
;
1343 info
->dwFreePages
= info
->dwMaxPagesAvailable
;
1344 info
->dwTotalPages
= info
->dwTotalLinearSpace
;
1345 info
->dwFreeLinearSpace
= info
->dwMaxPagesAvailable
;
1346 info
->dwSwapFilePages
= status
.dwTotalPageFile
/ info
->wPageSize
;
1350 case 0x0501: /* Allocate memory block */
1352 DWORD size
= MAKELONG( CX_reg(context
), BX_reg(context
) );
1355 TRACE( "allocate memory block (%u bytes)\n", size
);
1357 ptr
= DPMI_xalloc( size
);
1360 SET_AX( context
, 0x8012 ); /* linear memory not available */
1365 SET_BX( context
, HIWORD(ptr
) );
1366 SET_CX( context
, LOWORD(ptr
) );
1367 SET_SI( context
, HIWORD(ptr
) );
1368 SET_DI( context
, LOWORD(ptr
) );
1373 case 0x0502: /* Free memory block */
1375 DWORD handle
= MAKELONG( DI_reg(context
), SI_reg(context
) );
1376 TRACE( "free memory block (0x%08x)\n", handle
);
1377 DPMI_xfree( (void *)handle
);
1381 case 0x0503: /* Resize memory block */
1383 DWORD size
= MAKELONG( CX_reg(context
), BX_reg(context
) );
1384 DWORD handle
= MAKELONG( DI_reg(context
), SI_reg(context
) );
1387 TRACE( "resize memory block (0x%08x, %u bytes)\n", handle
, size
);
1389 ptr
= DPMI_xrealloc( (void *)handle
, size
);
1392 SET_AX( context
, 0x8012 ); /* linear memory not available */
1395 SET_BX( context
, HIWORD(ptr
) );
1396 SET_CX( context
, LOWORD(ptr
) );
1397 SET_SI( context
, HIWORD(ptr
) );
1398 SET_DI( context
, LOWORD(ptr
) );
1403 case 0x0507: /* Set page attributes (1.0) */
1404 FIXME( "set page attributes - unimplemented\n" );
1405 break; /* Just ignore it */
1407 case 0x0600: /* Lock linear region */
1408 TRACE( "lock linear region - ignored (no paging)\n" );
1411 case 0x0601: /* Unlock linear region */
1412 TRACE( "unlock linear region - ignored (no paging)\n" );
1415 case 0x0602: /* Mark real mode region as pageable */
1416 TRACE( "mark real mode region as pageable - ignored (no paging)\n" );
1419 case 0x0603: /* Relock real mode region */
1420 TRACE( "relock real mode region - ignored (no paging)\n" );
1423 case 0x0604: /* Get page size */
1425 SYSTEM_BASIC_INFORMATION info
;
1426 TRACE("get pagesize\n");
1427 NtQuerySystemInformation( SystemBasicInformation
, &info
, sizeof(info
), NULL
);
1428 SET_BX( context
, HIWORD(info
.PageSize
) );
1429 SET_CX( context
, LOWORD(info
.PageSize
) );
1432 case 0x0700: /* Mark pages as paging candidates */
1433 TRACE( "mark pages as paging candidates - ignored (no paging)\n" );
1436 case 0x0701: /* Discard pages */
1437 TRACE( "discard pages - ignored (no paging)\n" );
1440 case 0x0702: /* Mark page as demand-paging candidate */
1441 TRACE( "mark page as demand-paging candidate - ignored (no paging)\n" );
1444 case 0x0703: /* Discard page contents */
1445 TRACE( "discard page contents - ignored (no paging)\n" );
1448 case 0x0800: /* Physical address mapping */
1449 FIXME( "physical address mapping (0x%08x) - unimplemented\n",
1450 MAKELONG(CX_reg(context
),BX_reg(context
)) );
1453 case 0x0900: /* Get and Disable Virtual Interrupt State */
1454 TRACE( "Get and Disable Virtual Interrupt State: %d\n",
1455 get_vm86_teb_info()->dpmi_vif
);
1456 SET_AL( context
, get_vm86_teb_info()->dpmi_vif
? 1 : 0 );
1457 get_vm86_teb_info()->dpmi_vif
= 0;
1460 case 0x0901: /* Get and Enable Virtual Interrupt State */
1461 TRACE( "Get and Enable Virtual Interrupt State: %d\n",
1462 get_vm86_teb_info()->dpmi_vif
);
1463 SET_AL( context
, get_vm86_teb_info()->dpmi_vif
? 1 : 0 );
1464 get_vm86_teb_info()->dpmi_vif
= 1;
1467 case 0x0902: /* Get Virtual Interrupt State */
1468 TRACE( "Get Virtual Interrupt State: %d\n",
1469 get_vm86_teb_info()->dpmi_vif
);
1470 SET_AL( context
, get_vm86_teb_info()->dpmi_vif
? 1 : 0 );
1473 case 0x0e00: /* Get Coprocessor Status (1.0) */
1475 * Return status in AX bits:
1476 * B0 - MPv (MP bit in the virtual MSW/CR0)
1477 * 0 = numeric coprocessor is disabled for this client
1478 * 1 = numeric coprocessor is enabled for this client
1479 * B1 - EMv (EM bit in the virtual MSW/CR0)
1480 * 0 = client is not emulating coprocessor instructions
1481 * 1 = client is emulating coprocessor instructions
1482 * B2 - MPr (MP bit from the actual MSW/CR0)
1483 * 0 = numeric coprocessor is not present
1484 * 1 = numeric coprocessor is present
1485 * B3 - EMr (EM bit from the actual MSW/CR0)
1486 * 0 = host is not emulating coprocessor instructions
1487 * 1 = host is emulating coprocessor instructions
1488 * B4-B7 - coprocessor type
1489 * 00H = no coprocessor
1492 * 04H = 80486 with numeric coprocessor
1493 * 05H-0FH = reserved for future numeric processors
1495 TRACE( "Get Coprocessor Status\n" );
1496 SET_AX( context
, 69 ); /* 486, coprocessor present and enabled */
1499 case 0x0e01: /* Set Coprocessor Emulation (1.0) */
1501 * See function 0x0e00.
1502 * BX bit B0 is new value for MPv.
1503 * BX bit B1 is new value for EMv.
1505 if (BX_reg(context
) != 1)
1506 FIXME( "Set Coprocessor Emulation to %d - unimplemented\n",
1509 TRACE( "Set Coprocessor Emulation - ignored\n" );
1513 INT_BARF( context
, 0x31 );
1514 SET_AX( context
, 0x8001 ); /* unsupported function */