Merge branch '86Box:master' into nec-v20

This commit is contained in:
Jasmine Iwanek
2022-02-02 22:14:22 -05:00
committed by GitHub
242 changed files with 1970 additions and 422 deletions

View File

@@ -94,6 +94,7 @@ static int refresh = 0, cycdiff;
wait(val, 0); \
}
#if 0
#define CLOCK_CYCLES_FPU(val) \
{ \
wait(val, 0); \
@@ -113,6 +114,19 @@ static int refresh = 0, cycdiff;
}
#define CONCURRENCY_CYCLES(c) fpu_cycles = (c)
#else
#define CLOCK_CYCLES(val) \
{ \
wait(val, 0); \
}
#define CLOCK_CYCLES_FPU(val) \
{ \
wait(val, 0); \
}
#define CONCURRENCY_CYCLES(c)
#endif
typedef int (*OpFn)(uint32_t fetchdat);