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) ? TRUE
: FALSE
;
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
, CONTEXT86
*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
, CONTEXT86
*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 (%d 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 %d 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
;
271 newptr
= DPMI_xalloc( newsize
);
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 memcpy( newptr
, ptr
, mbi
.RegionSize
);
300 void DPMI_CallRMCB32(RMCB
*rmcb
, UINT16 ss
, DWORD esp
, UINT16
*es
, DWORD
*edi
)
301 #if 0 /* original code, which early gccs puke on */
304 __asm__
__volatile__(
312 ".byte 0x36, 0xff, 0x18\n" /* lcall *%ss:(%eax) */
318 : "=d" (*es
), "=D" (*edi
), "=S" (_clobber
), "=a" (_clobber
), "=c" (_clobber
)
319 : "0" (ss
), "2" (esp
),
320 "4" (rmcb
->regs_sel
), "1" (rmcb
->regs_ofs
),
321 "3" (&rmcb
->proc_ofs
) );
323 #else /* code generated by a gcc new enough */
325 __ASM_GLOBAL_FUNC(DPMI_CallRMCB32
,
327 __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
328 __ASM_CFI(".cfi_rel_offset %ebp,0\n\t")
330 __ASM_CFI(".cfi_def_cfa_register %ebp\n\t")
332 __ASM_CFI(".cfi_rel_offset %edi,-4\n\t")
334 __ASM_CFI(".cfi_rel_offset %esi,-8\n\t")
335 "movl 0x8(%ebp),%eax\n\t"
336 "movl 0x10(%ebp),%esi\n\t"
337 "movl 0xc(%ebp),%edx\n\t"
338 "movl 0x10(%eax),%ecx\n\t"
339 "movl 0xc(%eax),%edi\n\t"
348 ".byte 0x36, 0xff, 0x18\n\t" /* lcall *%ss:(%eax) */
354 "movl 0x14(%ebp),%eax\n\t"
355 "movw %dx,(%eax)\n\t"
356 "movl 0x18(%ebp),%edx\n\t"
357 "movl %edi,(%edx)\n\t"
359 __ASM_CFI(".cfi_same_value %esi\n\t")
361 __ASM_CFI(".cfi_same_value %edi\n\t")
363 __ASM_CFI(".cfi_def_cfa %esp,4\n\t")
364 __ASM_CFI(".cfi_same_value %ebp\n\t")
368 /**********************************************************************
371 * This routine does the hard work of calling a callback procedure.
373 static void DPMI_CallRMCBProc( CONTEXT86
*context
, RMCB
*rmcb
, WORD flag
)
375 DWORD old_vif
= get_vm86_teb_info()->dpmi_vif
;
377 /* Disable virtual interrupts. */
378 get_vm86_teb_info()->dpmi_vif
= 0;
380 if (wine_ldt_is_system( rmcb
->proc_sel
)) {
381 /* Wine-internal RMCB, call directly */
382 ((RMCBPROC
)rmcb
->proc_ofs
)(context
);
387 INT_SetRealModeContext(MapSL(MAKESEGPTR( rmcb
->regs_sel
, rmcb
->regs_ofs
)), context
);
388 ss
= alloc_pm_selector( context
->SegSs
, WINE_LDT_FLAGS_DATA
);
391 FIXME("untested!\n");
393 /* The called proc ends with an IRET, and takes these parameters:
394 * DS:ESI = pointer to real-mode SS:SP
395 * ES:EDI = pointer to real-mode call structure
397 * ES:EDI = pointer to real-mode call structure (may be a copy)
398 * It is the proc's responsibility to change the return CS:IP in the
399 * real-mode call structure. */
401 /* 32-bit DPMI client */
402 DPMI_CallRMCB32(rmcb
, ss
, esp
, &es
, &edi
);
404 /* 16-bit DPMI client */
405 CONTEXT86 ctx
= *context
;
406 ctx
.SegCs
= rmcb
->proc_sel
;
407 ctx
.Eip
= rmcb
->proc_ofs
;
410 ctx
.SegEs
= rmcb
->regs_sel
;
411 ctx
.Edi
= rmcb
->regs_ofs
;
412 /* FIXME: I'm pretty sure this isn't right - should push flags first */
413 WOWCallback16Ex( 0, WCB16_REGS
, 0, NULL
, (DWORD
*)&ctx
);
417 wine_ldt_free_entries( ss
, 1 );
418 INT_GetRealModeContext( MapSL( MAKESEGPTR( es
, edi
)), context
);
419 } __EXCEPT(dpmi_exception_handler
) { } __ENDTRY
421 /* Restore virtual interrupt flag. */
422 get_vm86_teb_info()->dpmi_vif
= old_vif
;
426 /**********************************************************************
429 * This routine does the hard work of calling a real mode procedure.
431 int DPMI_CallRMProc( CONTEXT86
*context
, LPWORD stack
, int args
, int iret
)
434 LPVOID addr
= NULL
; /* avoid gcc warning */
436 int alloc
= 0, already
= 0;
439 TRACE("EAX=%08x EBX=%08x ECX=%08x EDX=%08x\n",
440 context
->Eax
, context
->Ebx
, context
->Ecx
, context
->Edx
);
441 TRACE("ESI=%08x EDI=%08x ES=%04x DS=%04x CS:IP=%04x:%04x, %d WORD arguments, %s\n",
442 context
->Esi
, context
->Edi
, context
->SegEs
, context
->SegDs
,
443 context
->SegCs
, LOWORD(context
->Eip
), args
, iret
?"IRET":"FAR" );
447 /* there might be some code that just jumps to RMCBs or the like,
448 in which case following the jumps here might get us to a shortcut */
449 code
= CTX_SEG_OFF_TO_LIN(context
, context
->SegCs
, context
->Eip
);
451 case 0xe9: /* JMP NEAR */
452 context
->Eip
+= 3 + *(WORD
*)(code
+1);
453 /* yeah, I know these gotos don't look good... */
454 goto callrmproc_again
;
455 case 0xea: /* JMP FAR */
456 context
->Eip
= *(WORD
*)(code
+1);
457 context
->SegCs
= *(WORD
*)(code
+3);
458 /* ...but since the label is there anyway... */
459 goto callrmproc_again
;
460 case 0xeb: /* JMP SHORT */
461 context
->Eip
+= 2 + *(signed char *)(code
+1);
462 /* ...because of other gotos below, so... */
463 goto callrmproc_again
;
466 /* shortcut for chaining to internal interrupt handlers */
467 if ((context
->SegCs
== 0xF000) && iret
)
469 DOSVM_CallBuiltinHandler( context
, LOWORD(context
->Eip
)/4 );
473 /* shortcut for RMCBs */
474 CurrRMCB
= FirstRMCB
;
476 while (CurrRMCB
&& (HIWORD(CurrRMCB
->address
) != context
->SegCs
))
477 CurrRMCB
= CurrRMCB
->next
;
479 if (!CurrRMCB
&& !MZ_Current())
481 FIXME("DPMI real-mode call using DOS VM task system, not fully tested!\n");
482 TRACE("creating VM86 task\n");
486 if (!context
->SegSs
) {
487 alloc
= 1; /* allocate default stack */
488 stack16
= addr
= DOSMEM_AllocBlock( 64, (UINT16
*)&(context
->SegSs
) );
492 ERR("could not allocate default stack\n");
496 stack16
= CTX_SEG_OFF_TO_LIN(context
, context
->SegSs
, context
->Esp
);
498 context
->Esp
-= (args
+ (iret
?1:0)) * sizeof(WORD
);
500 if (args
) memcpy(stack16
, stack
, args
*sizeof(WORD
) );
501 /* push flags if iret */
504 *stack16
= LOWORD(context
->EFlags
);
506 /* push return address (return to interrupt wrapper) */
507 *(--stack16
) = DOSVM_dpmi_segments
->wrap_seg
;
510 context
->Esp
-= 2*sizeof(WORD
);
515 /* RMCB call, invoke protected-mode handler directly */
516 DPMI_CallRMCBProc(context
, CurrRMCB
, dpmi_flag
);
517 /* check if we returned to where we thought we would */
518 if ((context
->SegCs
!= DOSVM_dpmi_segments
->wrap_seg
) ||
519 (LOWORD(context
->Eip
) != 0)) {
520 /* we need to continue at different address in real-mode space,
521 so we need to set it all up for real mode again */
522 goto callrmproc_again
;
525 TRACE("entering real mode...\n");
526 DOSVM_Enter( context
);
527 TRACE("returned from real-mode call\n");
529 if (alloc
) DOSMEM_FreeBlock( addr
);
534 /**********************************************************************
537 static void DOSVM_CallRMInt( CONTEXT86
*context
)
539 CONTEXT86 realmode_ctx
;
540 FARPROC16 rm_int
= DOSVM_GetRMHandler( BL_reg(context
) );
541 REALMODECALL
*call
= CTX_SEG_OFF_TO_LIN( context
,
544 INT_GetRealModeContext( call
, &realmode_ctx
);
546 /* we need to check if a real-mode program has hooked the interrupt */
547 if (HIWORD(rm_int
)!=0xF000) {
548 /* yup, which means we need to switch to real mode... */
549 realmode_ctx
.SegCs
= HIWORD(rm_int
);
550 realmode_ctx
.Eip
= LOWORD(rm_int
);
551 if (DPMI_CallRMProc( &realmode_ctx
, NULL
, 0, TRUE
))
554 RESET_CFLAG(context
);
555 /* use the IP we have instead of BL_reg, in case some apps
556 decide to move interrupts around for whatever reason... */
557 DOSVM_CallBuiltinHandler( &realmode_ctx
, LOWORD(rm_int
)/4 );
559 INT_SetRealModeContext( call
, &realmode_ctx
);
563 /**********************************************************************
566 static void DOSVM_CallRMProc( CONTEXT86
*context
, int iret
)
568 REALMODECALL
*p
= CTX_SEG_OFF_TO_LIN( context
,
573 TRACE("RealModeCall: EAX=%08x EBX=%08x ECX=%08x EDX=%08x\n",
574 p
->eax
, p
->ebx
, p
->ecx
, p
->edx
);
575 TRACE(" ESI=%08x EDI=%08x ES=%04x DS=%04x CS:IP=%04x:%04x, %d WORD arguments, %s\n",
576 p
->esi
, p
->edi
, p
->es
, p
->ds
, p
->cs
, p
->ip
, CX_reg(context
), iret
?"IRET":"FAR" );
578 if (!(p
->cs
) && !(p
->ip
)) { /* remove this check
579 if Int21/6501 case map function
580 has been implemented */
584 INT_GetRealModeContext(p
, &context16
);
585 DPMI_CallRMProc( &context16
, ((LPWORD
)MapSL(MAKESEGPTR(context
->SegSs
, LOWORD(context
->Esp
))))+3,
586 CX_reg(context
), iret
);
587 INT_SetRealModeContext(p
, &context16
);
591 /* (see dosmem.c, function DOSMEM_InitDPMI) */
592 static void StartPM( CONTEXT86
*context
)
594 UINT16 cs
, ss
, ds
, es
;
596 DWORD psp_ofs
= (DWORD
)(DOSVM_psp
<<4);
597 PDB16
*psp
= (PDB16
*)psp_ofs
;
598 HANDLE16 env_seg
= psp
->environment
;
599 unsigned char selflags
= WINE_LDT_FLAGS_DATA
;
601 RESET_CFLAG(context
);
602 dpmi_flag
= AX_reg(context
);
603 /* our mode switch wrapper have placed the desired CS into DX */
604 cs
= alloc_pm_selector( context
->Edx
, WINE_LDT_FLAGS_CODE
);
605 /* due to a flaw in some CPUs (at least mine), it is best to mark stack segments as 32-bit if they
606 can be used in 32-bit code. Otherwise, these CPUs may not set the high word of esp during a
607 ring transition (from kernel code) to the 16-bit stack, and this causes trouble if executing
608 32-bit code using this stack. */
609 if (dpmi_flag
& 1) selflags
|= WINE_LDT_FLAGS_32BIT
;
610 ss
= alloc_pm_selector( context
->SegSs
, selflags
);
611 /* do the same for the data segments, just in case */
612 if (context
->SegDs
== context
->SegSs
) ds
= ss
;
613 else ds
= alloc_pm_selector( context
->SegDs
, selflags
);
614 es
= alloc_pm_selector( DOSVM_psp
, selflags
);
615 /* convert environment pointer, as the spec says, but we're a bit lazy about the size here... */
616 psp
->environment
= alloc_pm_selector( env_seg
, WINE_LDT_FLAGS_DATA
);
619 pm_ctx
.SegCs
= DOSVM_dpmi_segments
->dpmi_sel
;
620 /* our mode switch wrapper expects the new CS in DX, and the new SS in AX */
625 pm_ctx
.SegFs
= wine_get_fs();
626 pm_ctx
.SegGs
= wine_get_gs();
627 pm_ctx
.EFlags
&= ~V86_FLAG
;
629 TRACE("DOS program is now entering %d-bit protected mode\n",
630 DOSVM_IsDos32() ? 32 : 16);
634 WOWCallback16Ex( 0, WCB16_REGS
, 0, NULL
, (DWORD
*)&pm_ctx
);
636 __EXCEPT(dpmi_exception_handler
)
641 TRACE( "Protected mode DOS program is terminating\n" );
644 * FIXME: Instead of calling DOSVM_Exit, we should release all
645 * allocated protected mode resources and call MZ_Exit
646 * using real mode context. See DPMI specification.
648 DOSVM_Exit( DPMI_retval
);
651 wine_ldt_free_entries( psp
->environment
, 1 );
652 psp
->environment
= env_seg
;
653 wine_ldt_free_entries(es
,1);
654 if (ds
!= ss
) wine_ldt_free_entries(ds
,1);
655 wine_ldt_free_entries(ss
,1);
656 wine_ldt_free_entries(cs
,1);
660 static RMCB
*DPMI_AllocRMCB( void )
662 RMCB
*NewRMCB
= HeapAlloc(GetProcessHeap(), 0, sizeof(RMCB
));
667 LPVOID RMCBmem
= DOSMEM_AllocBlock(4, &uParagraph
);
670 *p
++ = 0xcd; /* RMCB: */
671 *p
++ = 0x31; /* int $0x31 */
672 /* it is the called procedure's task to change the return CS:EIP
673 the DPMI 0.9 spec states that if it doesn't, it will be called again */
675 *p
++ = 0xfc; /* jmp RMCB */
676 NewRMCB
->address
= MAKELONG(0, uParagraph
);
677 NewRMCB
->next
= FirstRMCB
;
684 FARPROC16
DPMI_AllocInternalRMCB( RMCBPROC proc
)
686 RMCB
*NewRMCB
= DPMI_AllocRMCB();
689 NewRMCB
->proc_ofs
= (DWORD
)proc
;
690 NewRMCB
->proc_sel
= 0;
691 NewRMCB
->regs_ofs
= 0;
692 NewRMCB
->regs_sel
= 0;
693 return (FARPROC16
)(NewRMCB
->address
);
699 static int DPMI_FreeRMCB( DWORD address
)
701 RMCB
*CurrRMCB
= FirstRMCB
;
702 RMCB
*PrevRMCB
= NULL
;
704 while (CurrRMCB
&& (CurrRMCB
->address
!= address
))
707 CurrRMCB
= CurrRMCB
->next
;
712 PrevRMCB
->next
= CurrRMCB
->next
;
714 FirstRMCB
= CurrRMCB
->next
;
715 DOSMEM_FreeBlock(PTR_REAL_TO_LIN(SELECTOROF(CurrRMCB
->address
),OFFSETOF(CurrRMCB
->address
)));
716 HeapFree(GetProcessHeap(), 0, CurrRMCB
);
723 /**********************************************************************
724 * DOSVM_RawModeSwitchHandler
726 * DPMI Raw Mode Switch handler
728 void WINAPI
DOSVM_RawModeSwitchHandler( CONTEXT86
*context
)
733 /* initialize real-mode context as per spec */
734 memset(&rm_ctx
, 0, sizeof(rm_ctx
));
735 rm_ctx
.SegDs
= AX_reg(context
);
736 rm_ctx
.SegEs
= CX_reg(context
);
737 rm_ctx
.SegSs
= DX_reg(context
);
738 rm_ctx
.Esp
= context
->Ebx
;
739 rm_ctx
.SegCs
= SI_reg(context
);
740 rm_ctx
.Eip
= context
->Edi
;
741 rm_ctx
.Ebp
= context
->Ebp
;
745 /* Copy interrupt state. */
746 if (get_vm86_teb_info()->dpmi_vif
)
747 rm_ctx
.EFlags
= V86_FLAG
| VIF_MASK
;
749 rm_ctx
.EFlags
= V86_FLAG
;
751 /* enter real mode again */
752 TRACE("re-entering real mode at %04x:%04x\n",rm_ctx
.SegCs
,rm_ctx
.Eip
);
753 ret
= DOSVM_Enter( &rm_ctx
);
754 /* when the real-mode stuff call its mode switch address,
755 DOSVM_Enter will return and we will continue here */
759 /* if the sync was lost, there's no way to recover */
763 /* alter protected-mode context as per spec */
764 context
->SegDs
= LOWORD(rm_ctx
.Eax
);
765 context
->SegEs
= LOWORD(rm_ctx
.Ecx
);
766 context
->SegSs
= LOWORD(rm_ctx
.Edx
);
767 context
->Esp
= rm_ctx
.Ebx
;
768 context
->SegCs
= LOWORD(rm_ctx
.Esi
);
769 context
->Eip
= rm_ctx
.Edi
;
770 context
->Ebp
= rm_ctx
.Ebp
;
774 /* Copy interrupt state. */
775 if (rm_ctx
.EFlags
& VIF_MASK
)
776 get_vm86_teb_info()->dpmi_vif
= 1;
778 get_vm86_teb_info()->dpmi_vif
= 0;
780 /* Return to new address and hope that we didn't mess up */
781 TRACE("re-entering protected mode at %04x:%08x\n",
782 context
->SegCs
, context
->Eip
);
786 /**********************************************************************
789 static void DOSVM_AllocRMCB( CONTEXT86
*context
)
791 RMCB
*NewRMCB
= DPMI_AllocRMCB();
793 TRACE("Function to call: %04x:%04x\n", (WORD
)context
->SegDs
, SI_reg(context
) );
797 NewRMCB
->proc_ofs
= DOSVM_IsDos32() ? context
->Esi
: LOWORD(context
->Esi
);
798 NewRMCB
->proc_sel
= context
->SegDs
;
799 NewRMCB
->regs_ofs
= DOSVM_IsDos32() ? context
->Edi
: LOWORD(context
->Edi
);
800 NewRMCB
->regs_sel
= context
->SegEs
;
801 SET_CX( context
, HIWORD(NewRMCB
->address
) );
802 SET_DX( context
, LOWORD(NewRMCB
->address
) );
806 SET_AX( context
, 0x8015 ); /* callback unavailable */
812 /**********************************************************************
815 static void DOSVM_FreeRMCB( CONTEXT86
*context
)
817 FIXME("callback address: %04x:%04x\n",
818 CX_reg(context
), DX_reg(context
));
820 if (DPMI_FreeRMCB(MAKELONG(DX_reg(context
), CX_reg(context
)))) {
821 SET_AX( context
, 0x8024 ); /* invalid callback address */
827 static BYTE
* XMS_Offset( MOVEOFS
*ofs
)
829 if (ofs
->Handle
) return (BYTE
*)GlobalLock16(ofs
->Handle
)+ofs
->Offset
;
830 else return PTR_REAL_TO_LIN(SELECTOROF(ofs
->Offset
),OFFSETOF(ofs
->Offset
));
833 /**********************************************************************
836 static void XMS_Handler( CONTEXT86
*context
)
838 switch(AH_reg(context
))
840 case 0x00: /* Get XMS version number */
841 TRACE("get XMS version number\n");
842 SET_AX( context
, 0x0200 ); /* 2.0 */
843 SET_BX( context
, 0x0000 ); /* internal revision */
844 SET_DX( context
, 0x0001 ); /* HMA exists */
846 case 0x08: /* Query Free Extended Memory */
850 TRACE("query free extended memory\n");
851 GlobalMemoryStatus( &status
);
852 SET_DX( context
, status
.dwAvailVirtual
>> 10 );
853 SET_AX( context
, status
.dwAvailVirtual
>> 10 );
854 TRACE("returning largest %dK, total %dK\n", AX_reg(context
), DX_reg(context
));
857 case 0x09: /* Allocate Extended Memory Block */
858 TRACE("allocate extended memory block (%dK)\n",
860 SET_DX( context
, GlobalAlloc16(GMEM_MOVEABLE
, (DWORD
)DX_reg(context
)<<10) );
861 SET_AX( context
, DX_reg(context
) ? 1 : 0 );
862 if (!DX_reg(context
)) SET_BL( context
, 0xA0 ); /* out of memory */
864 case 0x0a: /* Free Extended Memory Block */
865 TRACE("free extended memory block %04x\n",DX_reg(context
));
866 if(!DX_reg(context
) || GlobalFree16(DX_reg(context
))) {
867 SET_AX( context
, 0 ); /* failure */
868 SET_BL( context
, 0xa2 ); /* invalid handle */
870 SET_AX( context
, 1 ); /* success */
872 case 0x0b: /* Move Extended Memory Block */
874 MOVESTRUCT
*move
=CTX_SEG_OFF_TO_LIN(context
,
875 context
->SegDs
,context
->Esi
);
877 TRACE("move extended memory block\n");
878 src
=XMS_Offset(&move
->Source
);
879 dst
=XMS_Offset(&move
->Dest
);
880 memcpy(dst
,src
,move
->Length
);
881 if (move
->Source
.Handle
) GlobalUnlock16(move
->Source
.Handle
);
882 if (move
->Dest
.Handle
) GlobalUnlock16(move
->Dest
.Handle
);
885 case 0x88: /* Query Any Free Extended Memory */
890 TRACE("query any free extended memory\n");
892 GlobalMemoryStatus( &status
);
893 GetSystemInfo( &info
);
894 context
->Eax
= status
.dwAvailVirtual
>> 10;
895 context
->Edx
= status
.dwAvailVirtual
>> 10;
896 context
->Ecx
= (DWORD
)info
.lpMaximumApplicationAddress
;
897 SET_BL( context
, 0 ); /* No errors. */
899 TRACE("returning largest %dK, total %dK, highest 0x%x\n",
900 context
->Eax
, context
->Edx
, context
->Ecx
);
904 INT_BARF( context
, 0x31 );
905 SET_AX( context
, 0x0000 ); /* failure */
906 SET_BL( context
, 0x80 ); /* function not implemented */
912 /**********************************************************************
913 * DOSVM_CheckWrappers
915 * Check if this was really a wrapper call instead of an interrupt.
917 BOOL
DOSVM_CheckWrappers( CONTEXT86
*context
)
919 if (context
->SegCs
==DOSVM_dpmi_segments
->dpmi_seg
) {
920 /* This is the protected mode switch */
924 else if (context
->SegCs
==DOSVM_dpmi_segments
->xms_seg
)
926 /* This is the XMS driver entry point */
927 XMS_Handler(context
);
933 RMCB
*CurrRMCB
= FirstRMCB
;
935 while (CurrRMCB
&& (HIWORD(CurrRMCB
->address
) != context
->SegCs
))
936 CurrRMCB
= CurrRMCB
->next
;
939 /* RMCB call, propagate to protected-mode handler */
940 DPMI_CallRMCBProc(context
, CurrRMCB
, dpmi_flag
);
948 /**********************************************************************
951 * Handler for int 31h (DPMI).
953 void WINAPI
DOSVM_Int31Handler( CONTEXT86
*context
)
955 RESET_CFLAG(context
);
956 switch(AX_reg(context
))
958 case 0x0000: /* Allocate LDT descriptors */
959 TRACE( "allocate LDT descriptors (%d)\n", CX_reg(context
) );
961 WORD sel
= AllocSelectorArray16( CX_reg(context
) );
965 SET_AX( context
, 0x8011 ); /* descriptor unavailable */
966 SET_CFLAG( context
);
970 TRACE( "success, array starts at 0x%04x\n", sel
);
971 SET_AX( context
, sel
);
976 case 0x0001: /* Free LDT descriptor */
977 TRACE( "free LDT descriptor (0x%04x)\n", BX_reg(context
) );
978 if (FreeSelector16( BX_reg(context
) ))
980 SET_AX( context
, 0x8022 ); /* invalid selector */
981 SET_CFLAG( context
);
985 /* If a segment register contains the selector being freed, */
986 /* set it to zero. */
987 if (!((context
->SegDs
^BX_reg(context
)) & ~3)) context
->SegDs
= 0;
988 if (!((context
->SegEs
^BX_reg(context
)) & ~3)) context
->SegEs
= 0;
989 if (!((context
->SegFs
^BX_reg(context
)) & ~3)) context
->SegFs
= 0;
990 if (!((context
->SegGs
^BX_reg(context
)) & ~3)) context
->SegGs
= 0;
994 case 0x0002: /* Real mode segment to descriptor */
995 TRACE( "real mode segment to descriptor (0x%04x)\n", BX_reg(context
) );
997 WORD entryPoint
= 0; /* KERNEL entry point for descriptor */
998 switch(BX_reg(context
))
1000 case 0x0000: entryPoint
= 183; break; /* __0000H */
1001 case 0x0040: entryPoint
= 193; break; /* __0040H */
1002 case 0xa000: entryPoint
= 174; break; /* __A000H */
1003 case 0xb000: entryPoint
= 181; break; /* __B000H */
1004 case 0xb800: entryPoint
= 182; break; /* __B800H */
1005 case 0xc000: entryPoint
= 195; break; /* __C000H */
1006 case 0xd000: entryPoint
= 179; break; /* __D000H */
1007 case 0xe000: entryPoint
= 190; break; /* __E000H */
1008 case 0xf000: entryPoint
= 194; break; /* __F000H */
1010 FIXME("Real mode segment (%x) to descriptor: no longer supported\n",
1012 SET_CFLAG( context
);
1017 FARPROC16 proc
= GetProcAddress16( GetModuleHandle16( "KERNEL" ),
1018 (LPCSTR
)(ULONG_PTR
)entryPoint
);
1019 SET_AX( context
, LOWORD(proc
) );
1024 case 0x0003: /* Get next selector increment */
1025 TRACE("get selector increment (__AHINCR)\n");
1026 context
->Eax
= __AHINCR
;
1029 case 0x0004: /* Lock selector (not supported) */
1030 FIXME("lock selector not supported\n");
1031 context
->Eax
= 0; /* FIXME: is this a correct return value? */
1034 case 0x0005: /* Unlock selector (not supported) */
1035 FIXME("unlock selector not supported\n");
1036 context
->Eax
= 0; /* FIXME: is this a correct return value? */
1039 case 0x0006: /* Get selector base address */
1040 TRACE( "get selector base address (0x%04x)\n", BX_reg(context
) );
1043 WORD sel
= BX_reg(context
);
1044 wine_ldt_get_entry( sel
, &entry
);
1045 if (wine_ldt_is_empty(&entry
))
1047 context
->Eax
= 0x8022; /* invalid selector */
1052 void *base
= wine_ldt_get_base(&entry
);
1053 SET_CX( context
, HIWORD(base
) );
1054 SET_DX( context
, LOWORD(base
) );
1059 case 0x0007: /* Set selector base address */
1061 DWORD base
= MAKELONG( DX_reg(context
), CX_reg(context
) );
1062 WORD sel
= BX_reg(context
);
1063 TRACE( "set selector base address (0x%04x,0x%08x)\n", sel
, base
);
1065 /* check if Win16 app wants to access lower 64K of DOS memory */
1066 if (base
< 0x10000 && DOSVM_IsWin16())
1067 DOSMEM_MapDosLayout();
1069 SetSelectorBase( sel
, base
);
1073 case 0x0008: /* Set selector limit */
1075 DWORD limit
= MAKELONG( DX_reg(context
), CX_reg(context
) );
1076 TRACE( "set selector limit (0x%04x,0x%08x)\n",
1077 BX_reg(context
), limit
);
1078 SetSelectorLimit16( BX_reg(context
), limit
);
1082 case 0x0009: /* Set selector access rights */
1083 TRACE( "set selector access rights(0x%04x,0x%04x)\n",
1084 BX_reg(context
), CX_reg(context
) );
1085 SelectorAccessRights16( BX_reg(context
), 1, CX_reg(context
) );
1088 case 0x000a: /* Allocate selector alias */
1089 TRACE( "allocate selector alias (0x%04x)\n", BX_reg(context
) );
1090 SET_AX( context
, AllocCStoDSAlias16( BX_reg(context
) ) );
1091 if (!AX_reg(context
))
1093 SET_AX( context
, 0x8011 ); /* descriptor unavailable */
1098 case 0x000b: /* Get descriptor */
1099 TRACE( "get descriptor (0x%04x)\n", BX_reg(context
) );
1101 LDT_ENTRY
*entry
= CTX_SEG_OFF_TO_LIN( context
, context
->SegEs
,
1103 wine_ldt_get_entry( BX_reg(context
), entry
);
1107 case 0x000c: /* Set descriptor */
1108 TRACE( "set descriptor (0x%04x)\n", BX_reg(context
) );
1110 LDT_ENTRY
*entry
= CTX_SEG_OFF_TO_LIN( context
, context
->SegEs
,
1112 wine_ldt_set_entry( BX_reg(context
), entry
);
1116 case 0x000d: /* Allocate specific LDT descriptor */
1117 FIXME( "allocate descriptor (0x%04x), stub!\n", BX_reg(context
) );
1118 SET_AX( context
, 0x8011 ); /* descriptor unavailable */
1119 SET_CFLAG( context
);
1122 case 0x000e: /* Get Multiple Descriptors (1.0) */
1123 FIXME( "get multiple descriptors - unimplemented\n" );
1126 case 0x000f: /* Set Multiple Descriptors (1.0) */
1127 FIXME( "set multiple descriptors - unimplemented\n" );
1130 case 0x0100: /* Allocate DOS memory block */
1131 TRACE( "allocate DOS memory block (0x%x paragraphs)\n", BX_reg(context
) );
1133 DWORD dw
= GlobalDOSAlloc16( (DWORD
)BX_reg(context
) << 4 );
1135 SET_AX( context
, HIWORD(dw
) );
1136 SET_DX( context
, LOWORD(dw
) );
1138 SET_AX( context
, 0x0008 ); /* insufficient memory */
1139 SET_BX( context
, DOSMEM_Available() >> 4 );
1145 case 0x0101: /* Free DOS memory block */
1146 TRACE( "free DOS memory block (0x%04x)\n", DX_reg(context
) );
1148 WORD error
= GlobalDOSFree16( DX_reg(context
) );
1150 SET_AX( context
, 0x0009 ); /* memory block address invalid */
1151 SET_CFLAG( context
);
1156 case 0x0102: /* Resize DOS Memory Block */
1157 FIXME( "resize DOS memory block (0x%04x, 0x%x paragraphs) - unimplemented\n",
1158 DX_reg(context
), BX_reg(context
) );
1161 case 0x0200: /* get real mode interrupt vector */
1162 TRACE( "get realmode interrupt vector (0x%02x)\n",
1165 FARPROC16 proc
= DOSVM_GetRMHandler( BL_reg(context
) );
1166 SET_CX( context
, SELECTOROF(proc
) );
1167 SET_DX( context
, OFFSETOF(proc
) );
1171 case 0x0201: /* set real mode interrupt vector */
1172 TRACE( "set realmode interrupt vector (0x%02x, 0x%04x:0x%04x)\n",
1173 BL_reg(context
), CX_reg(context
), DX_reg(context
) );
1174 DOSVM_SetRMHandler( BL_reg(context
),
1175 (FARPROC16
)MAKESEGPTR(CX_reg(context
), DX_reg(context
)) );
1178 case 0x0202: /* Get Processor Exception Handler Vector */
1179 FIXME( "Get Processor Exception Handler Vector (0x%02x)\n",
1181 if (DOSVM_IsDos32())
1183 SET_CX( context
, 0 );
1188 SET_CX( context
, 0 );
1189 SET_DX( context
, 0 );
1193 case 0x0203: /* Set Processor Exception Handler Vector */
1194 FIXME( "Set Processor Exception Handler Vector (0x%02x)\n",
1198 case 0x0204: /* Get protected mode interrupt vector */
1199 TRACE("get protected mode interrupt handler (0x%02x)\n",
1201 if (DOSVM_IsDos32())
1203 FARPROC48 handler
= DOSVM_GetPMHandler48( BL_reg(context
) );
1204 SET_CX( context
, handler
.selector
);
1205 context
->Edx
= handler
.offset
;
1209 FARPROC16 handler
= DOSVM_GetPMHandler16( BL_reg(context
) );
1210 SET_CX( context
, SELECTOROF(handler
) );
1211 SET_DX( context
, OFFSETOF(handler
) );
1215 case 0x0205: /* Set protected mode interrupt vector */
1216 TRACE("set protected mode interrupt handler (0x%02x,0x%04x:0x%08x)\n",
1217 BL_reg(context
), CX_reg(context
), context
->Edx
);
1218 if (DOSVM_IsDos32())
1221 handler
.selector
= CX_reg(context
);
1222 handler
.offset
= context
->Edx
;
1223 DOSVM_SetPMHandler48( BL_reg(context
), handler
);
1228 handler
= (FARPROC16
)MAKESEGPTR( CX_reg(context
), DX_reg(context
));
1229 DOSVM_SetPMHandler16( BL_reg(context
), handler
);
1233 case 0x0300: /* Simulate real mode interrupt */
1234 TRACE( "Simulate real mode interrupt %02x.\n", BL_reg(context
));
1235 DOSVM_CallRMInt( context
);
1238 case 0x0301: /* Call real mode procedure with far return */
1239 TRACE( "Call real mode procedure with far return.\n" );
1240 DOSVM_CallRMProc( context
, FALSE
);
1243 case 0x0302: /* Call real mode procedure with interrupt return */
1244 TRACE( "Call real mode procedure with interrupt return.\n" );
1245 DOSVM_CallRMProc( context
, TRUE
);
1248 case 0x0303: /* Allocate Real Mode Callback Address */
1249 TRACE( "Allocate real mode callback address.\n" );
1250 DOSVM_AllocRMCB( context
);
1253 case 0x0304: /* Free Real Mode Callback Address */
1254 TRACE( "Free real mode callback address.\n" );
1255 DOSVM_FreeRMCB( context
);
1258 case 0x0305: /* Get State Save/Restore Addresses */
1259 TRACE("get state save/restore addresses\n");
1260 /* we probably won't need this kind of state saving */
1261 SET_AX( context
, 0 );
1263 /* real mode: just point to the lret */
1264 SET_BX( context
, DOSVM_dpmi_segments
->wrap_seg
);
1265 SET_CX( context
, 2 );
1267 /* protected mode: don't have any handler yet... */
1268 /* FIXME: Use DI in 16-bit DPMI and EDI in 32-bit DPMI */
1269 FIXME("no protected-mode dummy state save/restore handler yet\n");
1270 SET_SI( context
, 0 );
1274 case 0x0306: /* Get Raw Mode Switch Addresses */
1275 TRACE("get raw mode switch addresses\n");
1277 /* real mode, point to standard DPMI return wrapper */
1278 SET_BX( context
, DOSVM_dpmi_segments
->wrap_seg
);
1279 SET_CX( context
, 0 );
1281 /* protected mode, point to DPMI call wrapper */
1282 /* FIXME: Use DI in 16-bit DPMI and EDI in 32-bit DPMI */
1283 /* FIXME: Doesn't work in DPMI32... */
1284 SET_SI( context
, DOSVM_dpmi_segments
->dpmi_sel
);
1285 context
->Edi
= 8; /* offset of the INT 0x31 call */
1288 case 0x0400: /* Get DPMI version */
1289 TRACE("get DPMI version\n");
1294 SET_AX( context
, 0x005a ); /* DPMI version 0.90 */
1295 SET_BX( context
, 0x0005 ); /* Flags: 32-bit, virtual memory */
1296 SET_CL( context
, si
.wProcessorLevel
);
1297 SET_DX( context
, 0x0870 ); /* Master/slave interrupt controller base */
1301 case 0x0401: /* Get DPMI Capabilities (1.0) */
1302 FIXME( "get dpmi capabilities - unimplemented\n");
1305 case 0x0500: /* Get free memory information */
1306 TRACE("get free memory information\n");
1308 MEMORYSTATUS status
;
1310 /* the layout is just the same as MEMMANINFO, but without
1315 DWORD dwLargestFreeBlock
;
1316 DWORD dwMaxPagesAvailable
;
1317 DWORD dwMaxPagesLockable
;
1318 DWORD dwTotalLinearSpace
;
1319 DWORD dwTotalUnlockedPages
;
1322 DWORD dwFreeLinearSpace
;
1323 DWORD dwSwapFilePages
;
1325 } *info
= CTX_SEG_OFF_TO_LIN( context
, context
->SegEs
, context
->Edi
);
1327 GlobalMemoryStatus( &status
);
1328 info
->wPageSize
= getpagesize();
1329 info
->dwLargestFreeBlock
= status
.dwAvailVirtual
;
1330 info
->dwMaxPagesAvailable
= info
->dwLargestFreeBlock
/ info
->wPageSize
;
1331 info
->dwMaxPagesLockable
= info
->dwMaxPagesAvailable
;
1332 info
->dwTotalLinearSpace
= status
.dwTotalVirtual
/ info
->wPageSize
;
1333 info
->dwTotalUnlockedPages
= info
->dwTotalLinearSpace
;
1334 info
->dwFreePages
= info
->dwMaxPagesAvailable
;
1335 info
->dwTotalPages
= info
->dwTotalLinearSpace
;
1336 info
->dwFreeLinearSpace
= info
->dwMaxPagesAvailable
;
1337 info
->dwSwapFilePages
= status
.dwTotalPageFile
/ info
->wPageSize
;
1341 case 0x0501: /* Allocate memory block */
1343 DWORD size
= MAKELONG( CX_reg(context
), BX_reg(context
) );
1346 TRACE( "allocate memory block (%d bytes)\n", size
);
1348 ptr
= DPMI_xalloc( size
);
1351 SET_AX( context
, 0x8012 ); /* linear memory not available */
1356 SET_BX( context
, HIWORD(ptr
) );
1357 SET_CX( context
, LOWORD(ptr
) );
1358 SET_SI( context
, HIWORD(ptr
) );
1359 SET_DI( context
, LOWORD(ptr
) );
1364 case 0x0502: /* Free memory block */
1366 DWORD handle
= MAKELONG( DI_reg(context
), SI_reg(context
) );
1367 TRACE( "free memory block (0x%08x)\n", handle
);
1368 DPMI_xfree( (void *)handle
);
1372 case 0x0503: /* Resize memory block */
1374 DWORD size
= MAKELONG( CX_reg(context
), BX_reg(context
) );
1375 DWORD handle
= MAKELONG( DI_reg(context
), SI_reg(context
) );
1378 TRACE( "resize memory block (0x%08x, %d bytes)\n", handle
, size
);
1380 ptr
= DPMI_xrealloc( (void *)handle
, size
);
1383 SET_AX( context
, 0x8012 ); /* linear memory not available */
1386 SET_BX( context
, HIWORD(ptr
) );
1387 SET_CX( context
, LOWORD(ptr
) );
1388 SET_SI( context
, HIWORD(ptr
) );
1389 SET_DI( context
, LOWORD(ptr
) );
1394 case 0x0507: /* Set page attributes (1.0) */
1395 FIXME( "set page attributes - unimplemented\n" );
1396 break; /* Just ignore it */
1398 case 0x0600: /* Lock linear region */
1399 TRACE( "lock linear region - ignored (no paging)\n" );
1402 case 0x0601: /* Unlock linear region */
1403 TRACE( "unlock linear region - ignored (no paging)\n" );
1406 case 0x0602: /* Mark real mode region as pageable */
1407 TRACE( "mark real mode region as pageable - ignored (no paging)\n" );
1410 case 0x0603: /* Relock real mode region */
1411 TRACE( "relock real mode region - ignored (no paging)\n" );
1414 case 0x0604: /* Get page size */
1415 TRACE("get pagesize\n");
1416 SET_BX( context
, HIWORD(getpagesize()) );
1417 SET_CX( context
, LOWORD(getpagesize()) );
1420 case 0x0700: /* Mark pages as paging candidates */
1421 TRACE( "mark pages as paging candidates - ignored (no paging)\n" );
1424 case 0x0701: /* Discard pages */
1425 TRACE( "discard pages - ignored (no paging)\n" );
1428 case 0x0702: /* Mark page as demand-paging candidate */
1429 TRACE( "mark page as demand-paging candidate - ignored (no paging)\n" );
1432 case 0x0703: /* Discard page contents */
1433 TRACE( "discard page contents - ignored (no paging)\n" );
1436 case 0x0800: /* Physical address mapping */
1437 FIXME( "physical address mapping (0x%08x) - unimplemented\n",
1438 MAKELONG(CX_reg(context
),BX_reg(context
)) );
1441 case 0x0900: /* Get and Disable Virtual Interrupt State */
1442 TRACE( "Get and Disable Virtual Interrupt State: %d\n",
1443 get_vm86_teb_info()->dpmi_vif
);
1444 SET_AL( context
, get_vm86_teb_info()->dpmi_vif
? 1 : 0 );
1445 get_vm86_teb_info()->dpmi_vif
= 0;
1448 case 0x0901: /* Get and Enable Virtual Interrupt State */
1449 TRACE( "Get and Enable Virtual Interrupt State: %d\n",
1450 get_vm86_teb_info()->dpmi_vif
);
1451 SET_AL( context
, get_vm86_teb_info()->dpmi_vif
? 1 : 0 );
1452 get_vm86_teb_info()->dpmi_vif
= 1;
1455 case 0x0902: /* Get Virtual Interrupt State */
1456 TRACE( "Get Virtual Interrupt State: %d\n",
1457 get_vm86_teb_info()->dpmi_vif
);
1458 SET_AL( context
, get_vm86_teb_info()->dpmi_vif
? 1 : 0 );
1461 case 0x0e00: /* Get Coprocessor Status (1.0) */
1463 * Return status in AX bits:
1464 * B0 - MPv (MP bit in the virtual MSW/CR0)
1465 * 0 = numeric coprocessor is disabled for this client
1466 * 1 = numeric coprocessor is enabled for this client
1467 * B1 - EMv (EM bit in the virtual MSW/CR0)
1468 * 0 = client is not emulating coprocessor instructions
1469 * 1 = client is emulating coprocessor instructions
1470 * B2 - MPr (MP bit from the actual MSW/CR0)
1471 * 0 = numeric coprocessor is not present
1472 * 1 = numeric coprocessor is present
1473 * B3 - EMr (EM bit from the actual MSW/CR0)
1474 * 0 = host is not emulating coprocessor instructions
1475 * 1 = host is emulating coprocessor instructions
1476 * B4-B7 - coprocessor type
1477 * 00H = no coprocessor
1480 * 04H = 80486 with numeric coprocessor
1481 * 05H-0FH = reserved for future numeric processors
1483 TRACE( "Get Coprocessor Status\n" );
1484 SET_AX( context
, 69 ); /* 486, coprocessor present and enabled */
1487 case 0x0e01: /* Set Coprocessor Emulation (1.0) */
1489 * See function 0x0e00.
1490 * BX bit B0 is new value for MPv.
1491 * BX bit B1 is new value for EMv.
1493 if (BX_reg(context
) != 1)
1494 FIXME( "Set Coprocessor Emulation to %d - unimplemented\n",
1497 TRACE( "Set Coprocessor Emulation - ignored\n" );
1501 INT_BARF( context
, 0x31 );
1502 SET_AX( context
, 0x8001 ); /* unsupported function */