1
0
mirror of https://github.com/prirun/p50em.git synced 2026-02-23 07:01:55 +00:00

stopwatch.h: add stub file for Linux version. Older versions of the

emulator will also need this stub to compile.
This commit is contained in:
Jim
2020-03-09 22:26:06 -04:00
parent 4fb9acdc77
commit d544395fbc

12
stopwatch.h Normal file
View File

@@ -0,0 +1,12 @@
typedef struct {
char m_bClear;
} stopwatch_t;
static stopwatch_t sw_all, sw_fault, sw_ea, sw_mapva, sw_idle, sw_add16, sw_cas, sw_irs, sw_io, sw_zmv, sw_zmvd, sw_zfil, sw_pcl;
#define stopwatch_init(X,Y)
#define stopwatch_start(X)
#define stopwatch_stop(X)
#define stopwatch_report(X)
#define stopwatch_push(X)
#define stopwatch_pop(X)