f78b12e570284aa8291f4ca1add24937fd107403vboxsync/****************************************************************************
f78b12e570284aa8291f4ca1add24937fd107403vboxsync*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* Realmode X86 Emulator Library
f78b12e570284aa8291f4ca1add24937fd107403vboxsync*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* Copyright (C) 1996-1999 SciTech Software, Inc.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* Copyright (C) David Mosberger-Tang
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* Copyright (C) 1999 Egbert Eich
f78b12e570284aa8291f4ca1add24937fd107403vboxsync*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* ========================================================================
f78b12e570284aa8291f4ca1add24937fd107403vboxsync*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* Permission to use, copy, modify, distribute, and sell this software and
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* its documentation for any purpose is hereby granted without fee,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* provided that the above copyright notice appear in all copies and that
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* both that copyright notice and this permission notice appear in
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* supporting documentation, and that the name of the authors not be used
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* in advertising or publicity pertaining to distribution of the software
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* without specific, written prior permission. The authors makes no
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* representations about the suitability of this software for any purpose.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* It is provided "as is" without express or implied warranty.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* PERFORMANCE OF THIS SOFTWARE.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* ========================================================================
f78b12e570284aa8291f4ca1add24937fd107403vboxsync*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* Language: ANSI C
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* Environment: Any
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* Developer: Kendall Bennett
f78b12e570284aa8291f4ca1add24937fd107403vboxsync*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync* Description: Header file for FPU instruction decoding.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync****************************************************************************/
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#ifndef __X86EMU_FPU_H
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#define __X86EMU_FPU_H
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#ifdef __cplusplus
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern "C" { /* Use "C" linkage when in C++ mode */
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#endif
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync/* these have to be defined, whether 8087 support compiled in or not. */
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void x86emuOp_esc_coprocess_d8 (u8 op1);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void x86emuOp_esc_coprocess_d9 (u8 op1);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void x86emuOp_esc_coprocess_da (u8 op1);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void x86emuOp_esc_coprocess_db (u8 op1);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void x86emuOp_esc_coprocess_dc (u8 op1);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void x86emuOp_esc_coprocess_dd (u8 op1);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void x86emuOp_esc_coprocess_de (u8 op1);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void x86emuOp_esc_coprocess_df (u8 op1);
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#ifdef __cplusplus
f78b12e570284aa8291f4ca1add24937fd107403vboxsync} /* End of "C" linkage for C++ */
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#endif
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#endif /* __X86EMU_FPU_H */