Added PAE, ported K6, P6, and WinChip 2 timings to the old recompiler, added a bunch of CPU's to the old recompiler, done some x87 fixes for both recompilers, added PAE, and fixed root directory entries for single-sided 5.25" DD floppies in the New Floppy Image dialog.
This commit is contained in:
@@ -483,8 +483,8 @@ typedef union
|
||||
} while (0)
|
||||
#endif
|
||||
|
||||
// #ifdef USE_NEW_DYNAREC
|
||||
#if 1
|
||||
#ifdef USE_NEW_DYNAREC
|
||||
#define FP_CHECKTOP64 cpu_state.tag[cpu_state.TOP&7] & TAG_UINT64
|
||||
#define FP_TAG() cpu_state.tag[cpu_state.TOP&7] = TAG_VALID;
|
||||
#define FP_FTAG() cpu_state.tag[(cpu_state.TOP + fetchdat) & 7] = TAG_VALID;
|
||||
#define FP_LSTAG() cpu_state.tag[cpu_state.TOP&7] = TAG_VALID | TAG_UINT64;
|
||||
@@ -512,6 +512,7 @@ typedef union
|
||||
#define FP_686
|
||||
#endif
|
||||
#else
|
||||
#define FP_CHECKTOP64 cpu_state.tag[cpu_state.TOP] & TAG_UINT64
|
||||
#define FP_TAG() cpu_state.tag[cpu_state.TOP] &= ~TAG_UINT64;
|
||||
#define FP_FTAG() cpu_state.tag[(cpu_state.TOP + fetchdat) & 7] &= ~TAG_UINT64;
|
||||
#define FP_LSTAG() cpu_state.tag[cpu_state.TOP] |= TAG_UINT64;
|
||||
|
||||
Reference in New Issue
Block a user