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