diff options
Diffstat (limited to 'src/lib/util/tagmap.cpp')
-rw-r--r-- | src/lib/util/tagmap.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/lib/util/tagmap.cpp b/src/lib/util/tagmap.cpp new file mode 100644 index 00000000000..7995b578314 --- /dev/null +++ b/src/lib/util/tagmap.cpp @@ -0,0 +1,20 @@ +// license:BSD-3-Clause +// copyright-holders:Aaron Giles +/*************************************************************************** + + tagmap.c + + tagmap counter + +***************************************************************************/ + +#include <assert.h> + +#include "tagmap.h" + +#ifdef MAME_DEBUG +/** @brief The tagmap finds. */ +INT32 g_tagmap_finds = 0; +/** @brief true to enable, false to disable the tagmap counter. */ +bool g_tagmap_counter_enabled = false; +#endif |