1
0
mirror of https://github.com/prirun/p50em.git synced 2026-05-03 06:48:49 +00:00
Files
prirun.p50em/stopwatch.h
Jim d544395fbc stopwatch.h: add stub file for Linux version. Older versions of the
emulator will also need this stub to compile.
2020-03-09 22:26:06 -04:00

13 lines
351 B
C

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)