Add ESFMu for ESFM emulation

This commit is contained in:
Cacodemon345
2024-02-29 21:31:16 +06:00
committed by Kagamiin~
parent 53503cb843
commit 2fd511cc58
6 changed files with 3835 additions and 1 deletions

View File

@@ -21,7 +21,14 @@
#ifndef EMU_CPU_H
#define EMU_CPU_H
#ifndef NO_SOFTFLOAT_INCLUDE
#include "softfloat/softfloat.h"
#else
typedef struct floatx80 { // leave alignment to compiler
uint64_t exp;
uint16_t fraction;
} floatx80;
#endif
enum {
FPU_NONE,