From d544395fbc7d3824c7c675651f630f69f77b5884 Mon Sep 17 00:00:00 2001 From: Jim Date: Mon, 9 Mar 2020 22:26:06 -0400 Subject: [PATCH] stopwatch.h: add stub file for Linux version. Older versions of the emulator will also need this stub to compile. --- stopwatch.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 stopwatch.h diff --git a/stopwatch.h b/stopwatch.h new file mode 100644 index 0000000..d0b8ddd --- /dev/null +++ b/stopwatch.h @@ -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)