1
0
Fork 0

basic FXTRACT support

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2021
This commit is contained in:
Peter Veenstra 2004-10-12 16:19:45 +00:00
parent 93a8163a4d
commit b00484d130
2 changed files with 16 additions and 2 deletions

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: fpu.cpp,v 1.22 2004-09-08 08:46:37 qbix79 Exp $ */
/* $Id: fpu.cpp,v 1.23 2004-10-12 16:19:45 qbix79 Exp $ */
#include "dosbox.h"
#if C_FPU
@ -354,6 +354,9 @@ void FPU_ESC1_Normal(Bitu rm) {
case 0x03: /* FPATAN */
FPU_FPATAN();
break;
case 0x04: /* FXTRACT */
FPU_FXTRACT();
break;
default:
LOG(LOG_FPU,LOG_WARN)("ESC 1:Unhandled group %X subfunction %X",group,sub);
break;