You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
856 B
68 lines
856 B
/*++
|
|
|
|
Copyright (c) 1995 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
fpuarith.h
|
|
|
|
Abstract:
|
|
|
|
Common code for arithmetic floating-point operations.
|
|
|
|
Author:
|
|
|
|
04-Oct-1995 BarryBo, Created
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef FPUARITH_H
|
|
#define FPUARITH_H
|
|
|
|
VOID
|
|
ChangeFpPrecision(
|
|
PCPUDATA cpu,
|
|
INT NewPrecision
|
|
);
|
|
|
|
VOID
|
|
FpAddCommon(
|
|
PCPUDATA cpu,
|
|
PFPREG l,
|
|
PFPREG r
|
|
);
|
|
|
|
VOID
|
|
FpDivCommon(
|
|
PCPUDATA cpu,
|
|
PFPREG dest,
|
|
PFPREG l,
|
|
PFPREG r
|
|
);
|
|
|
|
VOID
|
|
FpMulCommon(
|
|
PCPUDATA cpu,
|
|
PFPREG l,
|
|
PFPREG r
|
|
);
|
|
|
|
VOID
|
|
FpSubCommon(
|
|
PCPUDATA cpu,
|
|
PFPREG dest,
|
|
PFPREG l,
|
|
PFPREG r
|
|
);
|
|
|
|
VOID
|
|
FpComCommon(
|
|
PCPUDATA cpu,
|
|
PFPREG l,
|
|
PFPREG r,
|
|
BOOL fUnordered
|
|
);
|
|
|
|
#endif //FPUARITH_H
|