From 566c3ca2de98761f9039e49ca5f68ee1a9ad73c4 Mon Sep 17 00:00:00 2001 From: Ori Bernstein Date: Mon, 8 Feb 2021 15:45:11 -0800 Subject: ape: sync flaot.h macros with u.h The float.h macros got out of sync with u.h, some of them missing and some of them being incorrect. This change brings them back in line. --- 68020/include/ape/float.h | 2 ++ 1 file changed, 2 insertions(+) (limited to '68020') diff --git a/68020/include/ape/float.h b/68020/include/ape/float.h index 4b56ec172..9c27df3da 100644 --- a/68020/include/ape/float.h +++ b/68020/include/ape/float.h @@ -58,6 +58,7 @@ union FPdbleword #define FPZDIV (1<<10) #define FPRNR (0<<4) #define FPRZ (1<<4) +#define FPINVAL (3<<13) #define FPRPINF (3<<4) #define FPRNINF (2<<4) #define FPRMASK (3<<4) @@ -70,5 +71,6 @@ union FPdbleword #define FPAOVFL FPOVFL #define FPAUNFL FPUNFL #define FPAZDIV FPZDIV +#define FPAINVAL FPINVAL #endif #endif /* __FLOAT */ -- cgit v1.2.3