Release 940405
[wine.git] / miscemu / emulate.c
blobb43f9f312cdc7520063e12721eba8226e01bf4c2
1 static char RCSId[] = "$Id: heap.c,v 1.3 1993/07/04 04:04:21 root Exp root $";
2 static char Copyright[] = "Copyright Robert J. Amstadt, 1993";
4 #include <stdlib.h>
5 #include <stdio.h>
6 #include "prototypes.h"
7 #include "regfunc.h"
9 struct Win87EmInfoStruct {
10 unsigned short Version;
11 unsigned short SizeSaveArea;
12 unsigned short WinDataSeg;
13 unsigned short WinCodeSeg;
14 unsigned short Have80x87;
15 unsigned short Unused;
18 int
19 WIN87_fpmath()
21 printf( "_fpmath: (%d)\n",_BX);
24 switch(_BX )
26 case 11:
27 return 1;
28 default:
29 return 0;
34 int
35 WIN87_WinEm87Info(struct Win87EmInfoStruct *pWIS, int cbWin87EmInfoStruct)
37 printf( "__WinEm87Info(%p,%d)\n",pWIS,cbWin87EmInfoStruct);
40 int
41 WIN87_WinEm87Restore(void *pWin87EmSaveArea, int cbWin87EmSaveArea)
43 printf( "__WinEm87Restore(%p,%d)\n",pWin87EmSaveArea,cbWin87EmSaveArea);
46 int
47 WIN87_WinEm87Save(void *pWin87EmSaveArea, int cbWin87EmSaveArea)
49 printf( "__WinEm87Save(%p,%d)\n",pWin87EmSaveArea,cbWin87EmSaveArea);